System.Web.SessionState.SessionStateModule.GetStoreData C# (CSharp) Method

GetStoreData() private method

private GetStoreData ( HttpContext context, string sessionId, bool isReadOnly ) : System.Web.SessionState.SessionStateStoreData
context System.Web.HttpContext
sessionId string
isReadOnly bool
return System.Web.SessionState.SessionStateStoreData
		SessionStateStoreData GetStoreData (HttpContext context, string sessionId, bool isReadOnly) {
			SessionStateStoreData item;
			item = (isReadOnly) ?
				handler.GetItem (context,
								 sessionId,
								 out storeLocked,
								 out storeLockAge,
								 out storeLockId,
								 out storeSessionAction)
								 :
				handler.GetItemExclusive (context,
									  sessionId,
									  out storeLocked,
									  out storeLockAge,
									  out storeLockId,
									  out storeSessionAction);
			if (storeLockId == null)
				storeLockId = 0;

			return item;
		}