HttpResponse.BufferOutput Proprietà

Definizione

Ottiene o imposta un valore che indica se memorizzare l'output nel buffer e inviarlo al termine dell'elaborazione dell'intera pagina.

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

Valore della proprietà

Boolean

true se l'output verso il client è memorizzato nel buffer; in caso contrario, false. Il valore predefinito è true.

Esempio

Nell'esempio seguente la ContentType proprietà per la risposta a image/jpeg chiama il Clear metodo per rimuovere altri contenuti che potrebbero essere associati alla risposta e quindi imposta la BufferOutput proprietà su true in modo che l'intera pagina venga elaborata prima dell'invio di qualsiasi contenuto al client richiedente.

Per un esempio completo, vedere la HttpResponse classe .

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

Si applica a