Udostępnij za pośrednictwem


PagesSection.EnableSessionState Właściwość

Definicja

Pobiera lub ustawia wartość określającą, czy stan sesji jest włączony, wyłączony, czy tylko do odczytu.

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

Wartość właściwości

Jedna z wartości właściwości EnableSessionState , która określa, czy stan sesji jest włączony, wyłączony lub tylko do odczytu. Wartość domyślna to True, która wskazuje, że stan sesji jest włączony.

Atrybuty

Wyjątki

Wartość nie jest prawidłową PagesEnableSessionState wartością wyliczenia.

Przykłady

W poniższym przykładzie kodu pokazano, jak używać EnableSessionState właściwości.

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

Dotyczy

Zobacz też