HttpRuntimeSection.EnableKernelOutputCache 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定值,表示是否啟用輸出快取。
public:
property bool EnableKernelOutputCache { bool get(); void set(bool value); };
[System.Configuration.ConfigurationProperty("enableKernelOutputCache", DefaultValue=true)]
public bool EnableKernelOutputCache { get; set; }
[<System.Configuration.ConfigurationProperty("enableKernelOutputCache", DefaultValue=true)>]
member this.EnableKernelOutputCache : bool with get, set
Public Property EnableKernelOutputCache As Boolean
屬性值
如果啟用輸出快取則為 true
,否則為 false
。 預設值是 true
。
- 屬性
範例
下列範例將示範如何使用 EnableKernelOutputCache 屬性。
// Get the current EnableKernelOutputCache property value.
Response.Write("EnableKernelOutputCache: " +
configSection.EnableKernelOutputCache + "<br>");
// Set the EnableKernelOutputCache property to true.
configSection.EnableKernelOutputCache = true;
' Get the current EnableKernelOutputCache property value.
Response.Write("EnableKernelOutputCache: " & _
configSection.EnableKernelOutputCache & "<br>")
' Set the EnableKernelOutputCache property to true.
configSection.EnableKernelOutputCache = True
備註
若要快取回應,必須符合下列準則:
快取必須由頁面指示詞或快取 API 明確啟用。
快取必須有到期原則,讓核心知道何時要捨棄它。
快取不能有任何變數標頭或參數。
要求不得要求任何驗證。
注意
只有在安裝 Internet Information Services (IIS) 6.0 版或更新版本時,此屬性才相關。