次の方法で共有


HttpResponse.BufferOutput プロパティ

定義

ページ全体の処理が完了した後に、出力をバッファリングしてから送信するかどうかを示す値を取得または設定します。

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

プロパティ値

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

適用対象