Compartilhar via


OutputCacheProfile.Enabled Propriedade

Definição

Obtém ou define um valor que indica se o cache 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 da propriedade

true se o cache estiver habilitado; caso contrário, false. O valor padrão é false.

Atributos

Exemplos

O exemplo de código a seguir mostra como usar a Enabled propriedade .


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

Comentários

A Enabled propriedade permite habilitar ou desabilitar o mecanismo de cache apenas em um só lugar. Ele afeta todas as páginas ou controles que usam este OutputCacheProfile.

Aplica-se a

Confira também