Compartilhar via


OutputCacheSection.EnableFragmentCache Propriedade

Definição

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.

Aplica-se a

Confira também