Gets specified part from the cache.

Namespace: FirstFloor.Documents.IO.Caching
Assembly: FirstFloor.Documents (in FirstFloor.Documents.dll) Version: 2.5.0.0 (2.5.1.0)

Syntax

C#
public bool TryGetPart(
	Uri partUri,
	out T part
)
Visual Basic
Public Function TryGetPart ( _
	partUri As Uri, _
	<OutAttribute> ByRef part As T _
) As Boolean
Visual C++
public:
virtual bool TryGetPart(
	Uri^ partUri, 
	[OutAttribute] T% part
) sealed

Parameters

partUri
Type: System..::..Uri
The part URI.
part
Type: T%
The part.

Return Value

A value indicating whether specified part was found.

Implements

IPartCache<(Of <(<'T>)>)>..::..TryGetPart(Uri, T%)

See Also