Retrieves the item from the repository.

Namespace: MonoSoftware.Web.Caching
Assembly: MonoSoftware.Web (in MonoSoftware.Web.dll) Version: 1.0.40.661 (1.0.40.661)

Syntax

C#
public T Get<T>(
	params Object[] keyParameters
)
Visual Basic
Public Function Get(Of T) ( 
	ParamArray keyParameters As Object()
) As T
Visual C++
public:
generic<typename T>
T Get(
	... array<Object^>^ keyParameters
)
F#
member Get : 
        keyParameters : Object[] -> 'T 

Parameters

keyParameters
Type: array<System..::..Object>[]()[][]
Key parameters in cache key of the item to be retrieved.

Type Parameters

T
Type of the item to be retrieved.

Return Value

Type: T
The object from the cache with the key parameters that are passed as a parameter.

See Also