Freigeben über


PagesSection.EnableSessionState Eigenschaft

Definition

Dient zum Abrufen oder Festlegen eines Werts, der angibt, ob der Sitzungszustand aktiviert, deaktiviert oder schreibgeschützt ist.

public:
 property System::Web::Configuration::PagesEnableSessionState EnableSessionState { System::Web::Configuration::PagesEnableSessionState get(); void set(System::Web::Configuration::PagesEnableSessionState value); };
[System.Configuration.ConfigurationProperty("enableSessionState", DefaultValue="true")]
public System.Web.Configuration.PagesEnableSessionState EnableSessionState { get; set; }
[<System.Configuration.ConfigurationProperty("enableSessionState", DefaultValue="true")>]
member this.EnableSessionState : System.Web.Configuration.PagesEnableSessionState with get, set
Public Property EnableSessionState As PagesEnableSessionState

Eigenschaftswert

Einer der Werte für die EnableSessionState Eigenschaft, der angibt, ob der Sitzungszustand aktiviert, deaktiviert oder schreibgeschützt ist. Der Standardwert ist True, der angibt, dass der Sitzungszustand aktiviert ist.

Attribute

Ausnahmen

Der Wert ist kein gültiger PagesEnableSessionState Enumerationswert.

Beispiele

Das folgende Codebeispiel zeigt, wie die EnableSessionState Eigenschaft verwendet wird.

// 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;
' 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

Gilt für:

Weitere Informationen