DataCache.Remove Method (String, DataCacheItemVersion, String)
Removes an object with a specific version from the cache in a region. This overload is not supported in Windows Azure Shared Caching.
Assembly: Microsoft.ApplicationServer.Caching.Client (in Microsoft.ApplicationServer.Caching.Client.dll)
Public Function Remove ( key As String, version As DataCacheItemVersion, region As String ) As Boolean
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 DataCacheItemVersion object that represents the version of the cached object that is to be removed.
- region
-
Type:
System.String
The name of the region the object resides in.
This method supports optimistic concurrency by only removing the object having the DataCacheItemVersion value specified with the version parameter. If another process updates this object before the method call, the object is not removed.
Show: