SessionStateModule Class
Provides session-state services for an application. This class cannot be inherited.
Assembly: System.Web (in System.Web.dll)
| Name | Description | |
|---|---|---|
![]() | SessionStateModule() | Initializes a new instance of the SessionStateModule class. |
| Name | Description | |
|---|---|---|
![]() | 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() | |
![]() | Init(HttpApplication^) | Calls initialization code when a SessionStateModule object is created. |
![]() | 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.) |
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.
Available since 1.1
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

