SessionStateUtility.RemoveHttpSessionStateFromContext(HttpContext) Yöntem

Tanım

Belirtilen bağlamdan oturum verilerini kaldırır.

C#
public static void RemoveHttpSessionStateFromContext(System.Web.HttpContext context);

Parametreler

context
HttpContext

HttpContext Oturum verilerinin kaldırılacağı yer.

Örnekler

Aşağıdaki kod örneği, özel bir oturum durumu modülünde olayın işleyicisini ReleaseRequestState gösterir. Olay işleyicisi geçerli HttpContext'den oturum verilerini kaldırır. Bu kod örneği, sınıfı için SessionStateUtility sağlanan daha büyük bir örneğin parçasıdır.

C#
//
// Event handler for HttpApplication.ReleaseRequestState
//

private void OnReleaseRequestState(object source, EventArgs args)
{
    HttpApplication app = (HttpApplication)source;
    HttpContext context = app.Context;
    string sessionID;

    // Read the session state from the context
    HttpSessionStateContainer stateProvider =
      (HttpSessionStateContainer)(SessionStateUtility.GetHttpSessionStateFromContext(context));

    // If Session.Abandon() was called, remove the session data from the local Hashtable
    // and execute the Session_OnEnd event from the Global.asax file.
    if (stateProvider.IsAbandoned)
    {
        try
        {
            pHashtableLock.AcquireWriterLock(Int32.MaxValue);

            sessionID = pSessionIDManager.GetSessionID(context);
            pSessionItems.Remove(sessionID);
        }
        finally
        {
            pHashtableLock.ReleaseWriterLock();
        }

        SessionStateUtility.RaiseSessionEnd(stateProvider, this, EventArgs.Empty);
    }

    SessionStateUtility.RemoveHttpSessionStateFromContext(context);
}

Açıklamalar

yöntemi, RemoveHttpSessionStateFromContext belirtilen HttpContext'den oturum verilerini temizler. Bir oturum durumu modülü, olay işleyicisinde ReleaseRequestState yöntemini çağırırRemoveHttpSessionStateFromContext.

Şunlara uygulanır

Ürün Sürümler
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1