Edit

Share via


PagesSection.EnableSessionState Property

Definition

Gets or sets a value that specifies whether the session state is enabled, disabled, or read-only.

[System.Configuration.ConfigurationProperty("enableSessionState", DefaultValue="true")]
public System.Web.Configuration.PagesEnableSessionState EnableSessionState { get; set; }

Property Value

One of the values for the EnableSessionState property, which specifies whether the session state is enabled, disabled, or read-only. The default is True, which indicates that session state is enabled.

Attributes

Exceptions

The value is not a valid PagesEnableSessionState enumeration value.

Examples

The following code example shows how to use the EnableSessionState property.

// Get the current EnableSessionState property value.
Console.WriteLine(
    "Current EnableSessionState value: '{0}'",
    pagesSection.EnableSessionState);

// Set the EnableSessionState property to
// PagesEnableSessionState.ReadOnly.
pagesSection.EnableSessionState =
    PagesEnableSessionState.ReadOnly;

Applies to

Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also