System.Web.SessionState.SessionStateServerHandler.GetItemExclusive C# (CSharp) Méthode

GetItemExclusive() public méthode

public GetItemExclusive ( HttpContext context, string id, bool &locked, TimeSpan &lockAge, object &lockId, SessionStateActions &actions ) : System.Web.SessionState.SessionStateStoreData
context System.Web.HttpContext
id string
locked bool
lockAge TimeSpan
lockId object
actions SessionStateActions
Résultat System.Web.SessionState.SessionStateStoreData
		public override SessionStateStoreData GetItemExclusive (HttpContext context,
									string id,
									out bool locked,
									out TimeSpan lockAge,
									out object lockId,
									out SessionStateActions actions)
		{
			EnsureGoodId (id, false);
			return GetItemInternal (context, id, out locked, out lockAge, out lockId, out actions, true);
		}