MySqlSessionStateStore.GetItem Method

MySQL Connector/Net

MySqlSessionStateStoreGetItem Method

Namespace: MySql.Web.SessionState
Assembly: MySql.Web (in MySql.Web.dll) Version: 6.9.9
Syntax
public override SessionStateStoreData GetItem(
	HttpContext context,
	string id,
	out bool locked,
	out TimeSpan lockAge,
	out Object lockId,
	out SessionStateActions actions
)
Public Overrides Function GetItem ( 
	context As HttpContext,
	id As String,
	<OutAttribute> ByRef locked As Boolean,
	<OutAttribute> ByRef lockAge As TimeSpan,
	<OutAttribute> ByRef lockId As Object,
	<OutAttribute> ByRef actions As SessionStateActions
) As SessionStateStoreData
public:
virtual SessionStateStoreData^ GetItem(
	HttpContext^ context, 
	String^ id, 
	[OutAttribute] bool% locked, 
	[OutAttribute] TimeSpan% lockAge, 
	[OutAttribute] Object^% lockId, 
	[OutAttribute] SessionStateActions% actions
) override
abstract GetItem : 
        context : HttpContext * 
        id : string * 
        locked : bool byref * 
        lockAge : TimeSpan byref * 
        lockId : Object byref * 
        actions : SessionStateActions byref -> SessionStateStoreData 
override GetItem : 
        context : HttpContext * 
        id : string * 
        locked : bool byref * 
        lockAge : TimeSpan byref * 
        lockId : Object byref * 
        actions : SessionStateActions byref -> SessionStateStoreData 

Parameters

context
Type: System.WebHttpContext
id
Type: SystemString
locked
Type: SystemBoolean
lockAge
Type: SystemTimeSpan
lockId
Type: SystemObject
actions
Type: System.Web.SessionStateSessionStateActions

Return Value

Type: SessionStateStoreData
See Also