OutputCacheSection.EnableFragmentCache 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 do fragmento está habilitado.
public:
property bool EnableFragmentCache { bool get(); void set(bool value); };
[System.Configuration.ConfigurationProperty("enableFragmentCache", DefaultValue=true)]
public bool EnableFragmentCache { get; set; }
[<System.Configuration.ConfigurationProperty("enableFragmentCache", DefaultValue=true)>]
member this.EnableFragmentCache : bool with get, set
Public Property EnableFragmentCache As Boolean
Valor da propriedade
true
se o cache de fragmentos estiver habilitado; caso contrário, false
. O padrão é true
.
- Atributos
Exemplos
O exemplo de código a seguir mostra como usar a EnableFragmentCache propriedade .
// Get the current EnabledFragmentCache.
Boolean enabledFragmentCache =
outputCacheSection.EnableFragmentCache;
// Set the EnabledFragmentCache.
outputCacheSection.EnableFragmentCache = false;
' Get the current EnabledFragmentCache.
Dim enabledFragmentCache As [Boolean] = _
outputCacheSection.EnableFragmentCache
' Set the EnabledFragmentCache.
outputCacheSection.EnableFragmentCache = False
Comentários
Se a EnableFragmentCache propriedade estiver definida como false
, nenhuma saída de controle de usuário será armazenada em cache, independentemente da diretiva @ OutputCache ou do perfil de cache usado. Para obter mais informações, consulte OutputCacheSettingsSection e OutputCacheProfile.