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 Object Get(
	string key
)
Visual Basic
Public Function Get ( 
	key As String
) As Object
Visual C++
public:
virtual Object^ Get(
	String^ key
) sealed
F#
abstract Get : 
        key : string -> Object 
override Get : 
        key : string -> Object 

Parameters

key
Type: System..::..String
Key of the item to be retrieved.

Return Value

Type: Object
The object from the cache with the key that is passed as a parameter.

See Also