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
注釈
応答バッファリングを有効にすると、ページまたはコントロール全体が処理されるまで、ページまたはコントロールの出力がバッファーされます。 パフォーマンスが重要な考慮事項である場合は、 を にtrue
設定Bufferしないでください。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET