SessionStateModule Class

Definition

Provides session-state services for an application. This class cannot be inherited.

public ref class SessionStateModule sealed : System::Web::IHttpModule
public ref class SessionStateModule sealed : System::Web::SessionState::ISessionStateModule
public sealed class SessionStateModule : System.Web.IHttpModule
public sealed class SessionStateModule : System.Web.SessionState.ISessionStateModule
type SessionStateModule = class
    interface IHttpModule
type SessionStateModule = class
    interface ISessionStateModule
    interface IHttpModule
Public NotInheritable Class SessionStateModule
Implements IHttpModule
Public NotInheritable Class SessionStateModule
Implements ISessionStateModule
Inheritance
SessionStateModule
Implements

Remarks

SessionStateModule is ASP.NET's default session-state handler. It writes session data to and retrieves it from the session-state store and raises the Session_OnStart and Session_OnEnd events. For details about how to use ASP.NET session state to store and retrieve values for a user session, see ASP.NET Session State Overview.

You can replace the SessionStateModule with a custom implementation of the IHttpModule interface that manages session state. For an example of a custom session-state module, see the SessionStateUtility class overview.

Constructors

SessionStateModule()

Initializes a new instance of the SessionStateModule class.

Methods

Dispose()

Executes final cleanup code before the SessionStateModule object is released from memory.

Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
GetHashCode()

Serves as the default hash function.

(Inherited from Object)
GetType()

Gets the Type of the current instance.

(Inherited from Object)
Init(HttpApplication)

Calls initialization code when a SessionStateModule object is created.

MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
ReleaseSessionState(HttpContext)

Releases the session state for the specified HttpContext.

ReleaseSessionStateAsync(HttpContext)

Asynchronously releases the session state for the specified HttpContext.

ToString()

Returns a string that represents the current object.

(Inherited from Object)

Events

End

Occurs when a session ends.

Start

The event that occurs when a session is created.

Applies to

See also