Condividi tramite


PagesSection.EnableSessionState Proprietà

Definizione

Ottiene o imposta un valore che specifica se lo stato della sessione è abilitato, disabilitato o di sola lettura.

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

Valore della proprietà

Uno dei valori per la EnableSessionState proprietà , che specifica se lo stato della sessione è abilitato, disabilitato o di sola lettura. Il valore predefinito è True, che indica che lo stato della sessione è abilitato.

Attributi

Eccezioni

Il valore non è un valore di enumerazione valido PagesEnableSessionState .

Esempio

Nell'esempio di codice seguente viene illustrato come utilizzare la EnableSessionState proprietà .

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

Si applica a

Vedi anche