次の方法で共有


PagesSection.Buffer プロパティ

定義

.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

注釈

応答バッファリングを有効にすると、ページまたはコントロール全体が処理されるまで、ページまたはコントロールの出力がバッファーされます。 パフォーマンスが重要な考慮事項である場合は、 を にtrue設定Bufferしないでください。

適用対象