SessionStateType Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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. |
Examples
The following code example shows how to use the SessionStateType enumeration with the InstallSessionState method of the SqlServices type.
// Install a custom session state database.
SqlServices.InstallSessionState(database,
SessionStateType.Custom,
connectionString);
' Install a custom session state database.
SqlServices.InstallSessionState(database, _
SessionStateType.Custom, _
connectionString)