Freigeben über


OutputCacheSection.EnableOutputCache Eigenschaft

Definition

Ruft einen Wert ab, der angibt, ob der Ausgabecache aktiviert ist, oder legt diesen fest.

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

Eigenschaftswert

true, wenn der Ausgabecache aktiviert ist, andernfalls false. Der Standardwert ist true.

Attribute

Beispiele

Im folgenden Codebeispiel wird die Verwendung der EnableOutputCache-Eigenschaft veranschaulicht.


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

Hinweise

Wenn die EnableFragmentCache -Eigenschaft auf falsefestgelegt ist, wird keine Seite auf dem Server zwischengespeichert, unabhängig von den Einstellungen in der @ OutputCache-Direktive oder dem Zwischenspeicherungsprofil, das von der Seite verwendet wird. Weitere Informationen finden Sie unter OutputCacheSettingsSection und OutputCacheProfile.

Gilt für:

Weitere Informationen