HttpResponse.Clear Метод

Определение

Удаляет все содержимое вывода из потока буфера.

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

Примеры

В следующем примере задается ContentType свойство ответа на image/jpeg, вызывается Clear метод для удаления другого содержимого, которое может быть присоединено к ответу, а затем задает BufferOutput для свойства значение true, чтобы полная страница обрабатывалась до отправки содержимого клиенту запроса.

Полный пример см. в описании 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 не очищает сведения о заголовке.

Применяется к

См. также раздел