DataCache.Get Method (String, DataCacheItemVersion, String)
Gets an object from the specified region by using the specified key. You may also provide the version to obtain the specific version of a key, if that version is still the most current in the region. This overload is not supported in Windows Azure Shared Caching.
Namespace: Microsoft.ApplicationServer.Caching
Assembly: Microsoft.ApplicationServer.Caching.Client (in Microsoft.ApplicationServer.Caching.Client.dll)
Syntax
public object Get(
string key,
out DataCacheItemVersion version,
string region
)
public:
Object^ Get(
String^ key,
[OutAttribute] DataCacheItemVersion^% version,
String^ region
)
member Get :
key:string *
version:DataCacheItemVersion byref *
region:string -> Object
Public Function Get (
key As String,
<OutAttribute> ByRef version As DataCacheItemVersion,
region As String
) As Object
Parameters
key
Type: System.StringThe unique value that is used to identify the object in the region.
version
Type: Microsoft.ApplicationServer.Caching.DataCacheItemVersionThe version of the desired object. If this parameter is null, the version of the current object is retrieved.
region
Type: System.StringThe name of the region where the object resides.
Return Value
Type: System.Object
The object that was cached by using the specified key. Null is returned if the key does not exist. Even if the key does exist, Null may also be returned because the object has been updated to a new version.
See Also
Get Overload
DataCache Class
Microsoft.ApplicationServer.Caching Namespace
Return to top