HttpResponse.BufferOutput Property
.NET Framework 3.0
Gets or sets a value indicating whether to buffer output and send it after the entire page is finished processing.
Namespace: System.Web
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
'Declaration Public Property BufferOutput As Boolean 'Usage Dim instance As HttpResponse Dim value As Boolean value = instance.BufferOutput instance.BufferOutput = value
/** @property */ public boolean get_BufferOutput () /** @property */ public void set_BufferOutput (boolean value)
public function get BufferOutput () : boolean public function set BufferOutput (value : boolean)
Not applicable.
Property Value
true if the output to client is buffered, otherwise false. The default is true.The following code example sets the ContentType property for the response to image/jpeg, calls the Clear method to remove other content that might be attached to the response, and then sets the BufferOutput property to true so that the entire page will be processed before any content is sent to the requesting client.
For a complete example, see the HttpResponse class.
Community Additions
ADD
Show: