Sdílet prostřednictvím


OutputCacheSection.EnableOutputCache Vlastnost

Definice

Získá nebo nastaví hodnotu určující, zda je povolena výstupní mezipaměť.

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

Hodnota vlastnosti

truepokud je výstupní mezipaměť povolena; v opačném případě . false Výchozí formát je true.

Atributy

Příklady

Následující příklad kódu ukazuje, jak použít EnableOutputCache vlastnost.


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

Poznámky

EnableFragmentCache Pokud je vlastnost nastavena na false, žádná stránka není uložena v mezipaměti na serveru, bez ohledu na nastavení v direktivě @ OutputCache nebo profil ukládání do mezipaměti, který stránka používá. Další informace naleznete v tématech OutputCacheSettingsSection a OutputCacheProfile.

Platí pro

Viz také