Udostępnij za pośrednictwem


HttpResponse.Clear Metoda

Definicja

Czyści wszystkie dane wyjściowe zawartości ze strumienia buforu.

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

Przykłady

Poniższy przykład ustawia ContentType właściwość dla odpowiedzi na obraz/jpeg, wywołuje Clear metodę w celu usunięcia innej zawartości, która może być dołączona do odpowiedzi, a następnie ustawia BufferOutput właściwość na true, aby kompletna strona została przetworzona przed wysłaniem jakiejkolwiek zawartości do klienta żądającego.

Pełny przykład można znaleźć w HttpResponse klasie .

    // 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

Uwagi

Metoda Clear nie czyści informacji nagłówka.

Dotyczy

Zobacz też