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 );
true if the output to client is buffered, otherwise false. The default is true.
The following example takes action only if the output is buffered.
if ( Response.BufferOutput == true ) {
// ... do whatever here ...
}
If Response.BufferOutput = True Then
' ... do whatever here ...
End If |
|
C# |
VB |
HttpResponse Members