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.
Assembly: Microsoft.ApplicationServer.Caching.Client (in Microsoft.ApplicationServer.Caching.Client.dll)
Public Function Get ( key As String, <OutAttribute> ByRef version As DataCacheItemVersion, region As String ) As Object
Parameters
- key
-
Type:
System.String
The unique value that is used to identify the object in the region.
- version
-
Type:
Microsoft.ApplicationServer.Caching.DataCacheItemVersion
The version of the desired object. If this parameter is null, the version of the current object is retrieved.
- region
-
Type:
System.String
The name of the region where the object resides.
Return Value
Type: System.ObjectThe 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.
Show: