Editar

Partilhar via


SessionStateType Enum

Definition

Describes the session-state type used when installing a session-state database provider.

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

Fields

Name Value Description
Temporary 0

Session state data is stored in tempdb, and stored procedures are placed in the "ASPState" database. Session state data will not survive a restart of SQL Server.

Persisted 1

Session-state data and stored procedures are placed in the "ASPState" database. Session-state data will survive a restart of the database server.

Custom 2

Session-state data and stored procedures are placed in a custom data store.

Applies to

See also