DataCacheSessionStoreProvider.ReleaseItemExclusive Method (HttpContext, String, Object)

 

Releases a lock on the session data in the cache.

Namespace:   Microsoft.ApplicationServer.Caching
Assembly:  Microsoft.ApplicationServer.Caching.Client (in Microsoft.ApplicationServer.Caching.Client.dll)

Syntax

public override void ReleaseItemExclusive(
    HttpContext context,
    string id,
    object lockId
)
public:
virtual void ReleaseItemExclusive(
    HttpContext^ context,
    String^ id,
    Object^ lockId
) override
override ReleaseItemExclusive : 
        context:HttpContext *
        id:string *
        lockId:Object -> unit
Public Overrides Sub ReleaseItemExclusive (
    context As HttpContext,
    id As String,
    lockId As Object
)

Parameters

  • id
    Type: System.String

    The session identifier of the current request.

  • lockId
    Type: System.Object

    The lock identifier of the current request.

Remarks

For more information, see the documentation for the base class SessionStateStoreProviderBase.

See Also

DataCacheSessionStoreProvider Class
Microsoft.ApplicationServer.Caching Namespace

Return to top