HttpResponse.Buffer Property
.NET Framework 3.0
Gets or sets a value indicating whether to buffer output and send it after the entire response is finished processing.
Namespace: System.Web
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
'Declaration Public Property Buffer As Boolean 'Usage Dim instance As HttpResponse Dim value As Boolean value = instance.Buffer instance.Buffer = value
/** @property */ public boolean get_Buffer () /** @property */ public void set_Buffer (boolean value)
public function get Buffer () : boolean public function set Buffer (value : boolean)
Not applicable.
Property Value
true if the output to client is buffered; otherwise, false.Buffer has been deprecated in favor of BufferOutput and is provided only for compatibility with previous versions of ASP. With ASP.NET, use BufferOutput.
Community Additions
ADD
Show: