Cache.Get(String) Method

Definition

Retrieves the specified item from the Cache object.

public:
 System::Object ^ Get(System::String ^ key);
public object Get (string key);
member this.Get : string -> obj
Public Function Get (key As String) As Object

Parameters

key
String

The identifier for the cache item to retrieve.

Returns

The retrieved cache item, or null if the key is not found.

Examples

The following example demonstrates how to retrieve the value cached for an ASP.NET text box server control.

Cache.Get("MyTextBox.Value");

Cache.Get("MyTextBox.Value")

Applies to

See also