IHttpSessionState::Abandon Method ()
.NET Framework (current version)
Ends the current session.
Assembly: System.Web (in System.Web.dll)
The Abandon method is used to clear out session data and raise the Session_OnEnd event defined in the Global.asax file for the ASP.NET application.
The following code example implements the Abandon method of the IHttpSessionState interface. The code example duplicates the behavior of the HttpSessionStateContainer class in that it adds an IsAbandoned property that is set to true when the Abandon method is called. The IsAbandoned property is checked by the session-state module during the ReleaseRequestState event to determine whether the session has been abandoned, and the session-state module clears out session data and executes the Session_OnEnd event.
.NET Framework
Available since 2.0
Available since 2.0
Show: