OutputCacheSection.EnableOutputCache 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定值,指出是否啟用輸出快取。
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
屬性值
如果啟用輸出快取,則為 true
,否則為 false
。 預設為 true
。
- 屬性
範例
下列程式碼範例示範如何使用 EnableOutputCache 屬性。
// 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
備註
EnableFragmentCache如果 屬性設定為 false
,則不論頁面所使用的 @ OutputCache 指示詞或快取配置檔中的設定為何,都不會在伺服器上快取任何頁面。 如需詳細資訊,請參閱 OutputCacheSettingsSection 和 OutputCacheProfile。