Beispiel #1
0
 internal void RaiseOnEnd(HttpSessionState sessionState)
 {
     if (this._sessionEndEventHandlerCount > 0)
     {
         HttpApplicationFactory.EndSession(sessionState, this, EventArgs.Empty);
     }
 }
Beispiel #2
0
 // Called by custom session state module if they want to raise Session_End.
 static public void RaiseSessionEnd(IHttpSessionState session, Object eventSource, EventArgs eventArgs)
 {
     HttpApplicationFactory.EndSession(new HttpSessionState(session), eventSource, eventArgs);
 }