SessionStateType Enumeration
.NET Framework (current version)
Describes the session-state type used when installing a session-state database provider.
Assembly: System.Web (in System.Web.dll)
| Member name | Description | |
|---|---|---|
| Custom | Session-state data and stored procedures are placed in a custom data store. | |
| Persisted | Session-state data and stored procedures are placed in the "ASPState" database. Session-state data will survive a restart of the database server. | |
| Temporary | 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. |
The following code example shows how to use the SessionStateType enumeration with the InstallSessionState method of the SqlServices type.
.NET Framework
Available since 2.0
Available since 2.0
Show: