Compartilhar via


OutputCacheSection.EnableOutputCache Propriedade

Definição

Obtém ou define um valor que indica se o cache de saída está habilitado.

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

Valor da propriedade

true se o cache de saída estiver habilitado; caso contrário, false. O padrão é true.

Atributos

Exemplos

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


// Get the current EnabledOutputCache.
Boolean enabledOutputCache = 
    outputCacheSection.EnableOutputCache;

// Set the EnabledOutputCache.
outputCacheSection.EnableOutputCache = false;
' Get the current EnabledOutputCache.
  Dim enabledOutputCache As [Boolean] = _
  outputCacheSection.EnableOutputCache

' Set the EnabledOutputCache.
outputCacheSection.EnableOutputCache = False

Comentários

Se a EnableFragmentCache propriedade estiver definida como false, nenhuma página será armazenada em cache no servidor, independentemente das configurações na diretiva @ OutputCache ou no perfil de cache usado pela página. Para obter mais informações, consulte OutputCacheSettingsSection e OutputCacheProfile.

Aplica-se a

Confira também