Share via


PagesSection.EnableSessionState Propiedad

Definición

Obtiene o establece un valor que especifica si estado de sesión está habilitado, deshabilitado o es de sólo lectura.

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

Valor de propiedad

PagesEnableSessionState

Uno de los valores para la propiedad EnableSessionState, que especifica si el estado de sesión está habilitado, deshabilitado o es de sólo lectura. El valor predeterminado es True, que indica que el estado de sesión está habilitado.

Atributos

Excepciones

El valor no es un valor de enumeración PagesEnableSessionState válido.

Ejemplos

En el ejemplo de código siguiente se muestra cómo utilizar la propiedad EnableSessionState.

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

Se aplica a

Consulte también