HttpResponse.Clear メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
すべての内容出力をバッファー ストリームから削除します。
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 ヘッダー情報をクリアしません。