This documentation is archived and is not being maintained.
HttpResponse.Buffer Property
.NET Framework 1.1
Gets or sets a value indicating whether to buffer output and send it after the entire response is finished processing.
[Visual Basic] Public Property Buffer As Boolean [C#] public bool Buffer {get; set;} [C++] public: __property bool get_Buffer(); public: __property void set_Buffer(bool); [JScript] public function get Buffer() : Boolean; public function set Buffer(Boolean);
Property Value
true if the output to client is buffered; otherwise, false.
Remarks
Buffer has been deprecated in favor of BufferOutput and is provided only for compatibility with previous versions of ASP. With ASP.NET, use BufferOutput.
Requirements
Platforms: Windows 2000, Windows XP Professional, Windows Server 2003 family
See Also
HttpResponse Class | HttpResponse Members | System.Web Namespace
Show: