Compartir a través de


OutputCacheProfile.Enabled Propiedad

Definición

Obtiene o establece un valor que indica si el almacenamiento en caché está habilitado.

public:
 property bool Enabled { bool get(); void set(bool value); };
[System.Configuration.ConfigurationProperty("enabled", DefaultValue=true)]
public bool Enabled { get; set; }
[<System.Configuration.ConfigurationProperty("enabled", DefaultValue=true)>]
member this.Enabled : bool with get, set
Public Property Enabled As Boolean

Valor de propiedad

Es true si el almacenamiento en caché está habilitado; en caso contrario, es false. El valor predeterminado es false.

Atributos

Ejemplos

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


 // Get the current Enabled.
Boolean enabledValue = 
    outputCacheProfile.Enabled;

 // Set the Enabled.
 outputCacheProfile.Enabled = 
     false;
    ' Get the current Enabled property.
    Dim enabledValue As [Boolean] = _
    outputCacheProfile.Enabled
  
    ' Set the Enabled property.
outputCacheProfile.Enabled = False

Comentarios

La Enabled propiedad permite habilitar o deshabilitar el mecanismo de almacenamiento en caché solo en un solo lugar. Afecta a todas las páginas o controles que usan este OutputCacheProfile.

Se aplica a

Consulte también