asp.net.ph

Response.BufferOutput Property

System.Web Namespace   HttpResponse Class


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

[ VB ]
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.

if ( Response.BufferOutput == true ) {
   // ... do whatever here ...
}
  C# VB

See Also

HttpResponse Members Skip Navigation Links




Home
Suggested Reading


Previous page Back to top Next page

© 2000-2010 Rey Nuñez All rights reserved.

If you have any question, comment or suggestion
about this site, please send us a note

You can help support asp.net.ph