This documentation is archived and is not being maintained.
SessionStateBehavior Enumeration
Visual Studio 2010
Specifies the type of session support that is required in order to handle a request.
Assembly: System.Web (in System.Web.dll)
| Member name | Description | |
|---|---|---|
| Default | The default ASP.NET logic is used to determine the session state behavior for the request. The default logic looks for the existence of marker session state interfaces on the IHttpHandler. | |
| Required | Full read-write session state behavior is enabled for the request. This setting overrides whatever session behavior would have been determined by inspecting the handler for the request. | |
| ReadOnly | Read-only session state is enabled for the request. This means that session state cannot be updated. This setting overrides whatever session state behavior would have been determined by inspecting the handler for the request. | |
| Disabled | Session state is not enabled for processing the request. This setting overrides whatever session behavior would have been determined by inspecting the handler for the request. |
The SessionStateBehavior enumeration is used with the SetSessionStateBehavior method. You can call this method to indicate that session state support is needed to handle a request, and pass a SessionStateBehavior enumeration value to specify what type of session state behavior applies to the request.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: