OutputCacheProfile.Enabled Propriedade
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
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.