Variable CSPResponse::Buffer
Description:
If set to true, all outgoing data is being buffered. If set to false, all outgoing data is immediatelly sent to the client.
 |
Prototype
bool Buffer;
Remarks:
The default value is true. You must call member function Flush() in order to send any buffered data to the client.
Examples:
Response.Buffer = true; Response.Write( "Hello" ); Response.Flush();
See also:
member function Flush()
|
|