SessionStateBehavior Enum

Definition

Specifies the type of session support that is required in order to handle a request.

public enum class SessionStateBehavior
public enum SessionStateBehavior
type SessionStateBehavior = 
Public Enum SessionStateBehavior
Inheritance
SessionStateBehavior

Fields

Default 0

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.

Disabled 3

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.

ReadOnly 2

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.

Required 1

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.

Remarks

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.

Applies to

See also