DataCache.PutAndUnlock Method (String, Object, DataCacheLockHandle, IEnumerable<DataCacheTag>, String)
Replaces and unlocks an object in the specified region. Associates tags with the cached object. 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 DataCacheItemVersion PutAndUnlock(
string key,
object value,
DataCacheLockHandle lockHandle,
IEnumerable<DataCacheTag> tags,
string region
)
public:
DataCacheItemVersion^ PutAndUnlock(
String^ key,
Object^ value,
DataCacheLockHandle^ lockHandle,
IEnumerable<DataCacheTag^>^ tags,
String^ region
)
member PutAndUnlock :
key:string *
value:Object *
lockHandle:DataCacheLockHandle *
tags:IEnumerable<DataCacheTag> *
region:string -> DataCacheItemVersion
Public Function PutAndUnlock (
key As String,
value As Object,
lockHandle As DataCacheLockHandle,
tags As IEnumerable(Of DataCacheTag),
region As String
) As DataCacheItemVersion
Parameters
key
Type: System.StringThe unique value that is used to identify the object in the region.
value
Type: System.ObjectThe object to add or replace.
lockHandle
Type: Microsoft.ApplicationServer.Caching.DataCacheLockHandleThe DataCacheLockHandle object that was returned when the object was locked.
tags
Type: System.Collections.Generic.IEnumerable<DataCacheTag>A list of tags to associate with the object.
region
Type: System.StringThe name of the region the object resides in.
Return Value
Type: Microsoft.ApplicationServer.Caching.DataCacheItemVersion
A DataCacheItemVersion object that represents the version of the cached object after it has been updated by this method.
Remarks
Locked objects are never expired, but they may expire immediately if unlocked after their expiration time.
This overload is useful for updating the tags associated with the object.
If the lockHandle parameter is not equal to the DataCacheLockHandle object obtained from the method that is used to lock the object, a DataCacheException object is thrown with the ErrorCode property set to InvalidCacheLockHandle, and the object is not updated.
See Also
PutAndUnlock Overload
DataCache Class
Microsoft.ApplicationServer.Caching Namespace
Return to top