DataCache.Unlock Method (String, DataCacheLockHandle)

[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Releases objects locked in the cache. This method supports pessimistic concurrency by making sure that the appropriate DataCacheLockHandle is used for unlocking the object.

Namespace: Microsoft.Data.Caching
Assembly: ClientLibrary (in clientlibrary.dll)

Syntax

'Declaration
Public Sub Unlock ( _
    key As String, _
    lockHandle As DataCacheLockHandle _
)
'Usage
Dim instance As DataCache
Dim key As String
Dim lockHandle As DataCacheLockHandle

instance.Unlock(key, lockHandle)
public void Unlock (
    string key,
    DataCacheLockHandle lockHandle
)
public:
void Unlock (
    String^ key, 
    DataCacheLockHandle^ lockHandle
)
public void Unlock (
    String key, 
    DataCacheLockHandle lockHandle
)
public function Unlock (
    key : String, 
    lockHandle : DataCacheLockHandle
)

Parameters

  • key
    The unique value that is used to identify the object in the region.

Remarks

The lockHandle parameter is required and must match the DataCacheLockHandle of the locked object to succeed. For more information about concurrency, see Concurrency Models (Velocity) and Concurrency Methods (Velocity).

Locked objects are never expired, but they may expire immediately if unlocked after their expiration time. For more information, see Expiration and Eviction (Velocity).

See Also

Reference

DataCache Class
DataCache Members
Microsoft.Data.Caching Namespace