CoherenceSessionStoreGetItem Method |
.NET API Reference for Oracle® Coherence Community Edition
(14.1.1.0)
E55634-01
Returns read-only HTTP session data from the session data store.
Namespace:
Tangosol.Web
Assembly:
Coherence (in Coherence.dll) Version: 14.1.1.1 (14.1.1.1)
Syntaxpublic override SessionStateStoreData GetItem(
HttpContext context,
string id,
out bool locked,
out TimeSpan lockAge,
out Object lockId,
out SessionStateActions actions
)
Parameters
- context
- Type: System.WebHttpContext
The Web.HttpContext for the current request.
- id
- Type: SystemString
The Web.SessionState.HttpSessionState.SessionID for the
current request.
- locked
- Type: SystemBoolean
When this method returns, contains a Boolean value that is set to
true if the requested HTTP session item is locked at the
session data store; otherwise, false.
- lockAge
- Type: SystemTimeSpan
When this method returns, contains a TimeSpan object that
is set to the amount of time that an item in the session data
store has been locked.
- lockId
- Type: SystemObject
When this method returns, contains an object that is set to the
lock identifier for the current request. For details on the lock
identifier, see "Locking Session-Store Data" in the
SessionStateStoreProviderBase
class summary.
- actions
- Type: System.Web.SessionStateSessionStateActions
When this method returns, contains one of the
Web.SessionState.SessionStateActions values, indicating
whether the current HTTP session is an uninitialized, cookieless
HTTP session.
Return Value
Type:
SessionStateStoreData
A
Web.SessionState.SessionStateStoreData populated with HTTP
session values and information from the session data store.
See Also