Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
12c (12.2.1.4.0)
E90869-02
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: 12.2.1.4014 (12.2.1.4014)

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