Oracle® Coherence .NET API Reference Release 3.7.1
E22844-03

Updates the session item information in the session data store with values from the current request, and clears the lock on the data.

Namespace:  Tangosol.Web
Assembly:  Coherence (in Coherence.dll) Version: 3.7.1.23 (3.7.1.23)

Syntax

C#
public override void SetAndReleaseItemExclusive(
	HttpContext context,
	string id,
	SessionStateStoreData item,
	Object lockId,
	bool newItem
)

Parameters

context
Type: System.Web..::.HttpContext
The Web.HttpContext for the current request.
id
Type: System..::.String
The HTTP session identifier for the current request.
item
Type: System.Web.SessionState..::.SessionStateStoreData
The Web.SessionState.SessionStateStoreData object that contains the current HTTP session values to be stored.
lockId
Type: System..::.Object
The lock identifier for the current request.
newItem
Type: System..::.Boolean
true to identify the session item as a new item; false to identify the session item as an existing item.

See Also