System.Web Namespace HttpResponse Class
Sends all currently buffered output to the client.
[ VB ]
Public Sub Flush ( )
[ C# ]
public void Flush ( );
[ C++ ]
public: void Flush ( );
[ JScript ]
public function Flush ( );
Exception Type |
Condition |
HttpException |
Occurs when the cache is flushed after the response has been sent. |
Forces all currently buffered output to be sent to the client. Flush can be called multiple times during request processing.
The following example flushes the buffer to the output stream.
[ VB ]
Response.Flush ( )
[ C# ]
Response.Flush ( );
HttpResponse Members