1 out of 1 rated this helpful - Rate this topic

Cache.Get Method

Retrieves the specified item from the Cache object.

Namespace:  System.Web.Caching
Assembly:  System.Web (in System.Web.dll)
public Object Get(
	string key
)

Parameters

key
Type: System.String
The identifier for the cache item to retrieve.

Return Value

Type: System.Object
The retrieved cache item, or null if the key is not found.

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


Cache.Get("MyTextBox.Value");
   


.NET Framework

Supported in: 4, 3.5, 3.0, 2.0, 1.1, 1.0

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ
Example not 100% clear
The example shown here may not be 100% clear, particularly to new developers - It seems to suggest that a control name + property needs to be passed as the key, which is not the case - In actual fact it requires any String, representing the key name for the cache item, e.g:

Cache.Get("cacheItemName")

Of course, the actual value of "cacheItemName" could have been derived from myTextBox.Text