HttpResponse.Clear メソッド

定義

すべての内容出力をバッファー ストリームから削除します。

public:
 void Clear();
public void Clear ();
member this.Clear : unit -> unit
Public Sub Clear ()

次の使用例は、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

注釈

このメソッドは Clear ヘッダー情報をクリアしません。

適用対象

こちらもご覧ください