PagesSection.Buffer 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定值,指出 .aspx 頁面和 .ascx 控制項是否使用回應緩衝。
public:
property bool Buffer { bool get(); void set(bool value); };
[System.Configuration.ConfigurationProperty("buffer", DefaultValue=true)]
public bool Buffer { get; set; }
[<System.Configuration.ConfigurationProperty("buffer", DefaultValue=true)>]
member this.Buffer : bool with get, set
Public Property Buffer As Boolean
屬性值
如果 .aspx 頁面和 .ascx 控制項使用回應緩衝,則為 true
,否則為 false
。 預設為 true
。
- 屬性
範例
下列程式碼範例示範如何使用 Buffer 屬性。
// Get the current Buffer property value.
Console.WriteLine(
"Current Buffer value: '{0}'", pagesSection.Buffer);
// Set the Buffer property to true.
pagesSection.Buffer = true;
' Get the current Buffer property value.
Console.WriteLine( _
"Current Buffer value: '{0}'", pagesSection.Buffer)
' Set the Buffer property to true.
pagesSection.Buffer = True
備註
開啟回應緩衝時,頁面或控制項輸出會經過緩衝處理,直到處理整個頁面或控制項之後。 如果效能是關鍵考慮,請勿設定 Buffertrue
為 。