SessionStateMode Enum

Definition

Specifies the session-state mode.

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

Fields

Custom 4

Session state is using a custom data store to store session-state information.

InProc 1

Session state is in process with an ASP.NET worker process.

Off 0

Session state is disabled.

SQLServer 3

Session state is using an out-of-process SQL Server database to store state information.

StateServer 2

Session state is using the out-of-process ASP.NET State Service to store state information.

Examples

The session-state mode is set in the configuration file.

Applies to