HttpResponse.BufferOutput Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
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à
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