HttpResponse.BufferOutput プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
ページ全体の処理が完了した後に、出力をバッファリングしてから送信するかどうかを示す値を取得または設定します。
public:
property bool BufferOutput { bool get(); void set(bool value); };
public bool BufferOutput { get; set; }
member this.BufferOutput : bool with get, set
Public Property BufferOutput As Boolean
プロパティ値
クライアントへの出力をバッファリングする場合は true
。それ以外の場合は false
。 既定値は、true
です。
例
次の使用例は、image/jpeg への応答のプロパティを設定 ContentType し、メソッドを Clear 呼び出して応答に添付されている可能性がある他のコンテンツを削除し、プロパティを true に設定 BufferOutput して、要求するクライアントにコンテンツが送信される前にページ全体が処理されるようにします。
完全な例については、クラスを HttpResponse 参照してください。
// Set the page's content type to JPEG files
// and clears all content output from the buffer stream.
Response.ContentType = "image/jpeg";
Response.Clear();
// Buffer response so that page is sent
// after processing is complete.
Response.BufferOutput = true;
' Set the page's content type to JPEG files
' and clears all content output from the buffer stream.
Response.ContentType = "image/jpeg"
Response.Clear()
' Buffer response so that page is sent
' after processing is complete.
Response.BufferOutput = True