HttpResponse.BufferOutput Property
This page is specific to:.NET Framework Version:1.12.03.03.54.0
.NET Framework Class Library
HttpResponse.BufferOutput Property

Gets or sets a value indicating whether to buffer output and send it after the entire page is finished processing.

[Visual Basic]
Public Property BufferOutput As Boolean
[C#]
public bool BufferOutput {get; set;}
[C++]
public: __property bool get_BufferOutput();
public: __property void set_BufferOutput(bool);
[JScript]
public function get BufferOutput() : Boolean;
public function set BufferOutput(Boolean);

Property Value

true if the output to client is buffered, otherwise false. The default is true.

Example

The following example takes action only if the output is buffered.

[Visual Basic] 
If Response.BufferOutput = True Then
    '...
 End IF
    

[C#] 
if (Response.BufferOutput == true)
 {
    //...
 }
    

[C++] 
if (Response->BufferOutput)
 {
    //...
 }
    

[JScript] 
if(Response.BufferOutput){
  //...
}

Requirements

Platforms: Windows 2000, Windows XP Professional, Windows Server 2003 family

See Also

HttpResponse Class | HttpResponse Members | System.Web Namespace

© 2009 Microsoft Corporation. All rights reserved.   Terms of Use | Trademarks | Privacy Statement
Page view tracker
Rate the Lightweight library
x
Lightweight builds on ScriptFree (loband) by adding features you've requested: a SearchBox and default code language selection.
Do you like the SearchBox?
Do you like the tabbed code blocks?
How useful is this topic?
Tell us more.
Thanks
x
You're helping to improve MSDN Online.
Feedback
Switch View
Classic
Lightweight Beta
ScriptFree
Switch View