IResponse::get_Buffer

The IResponse::get_Buffer method retrieves the current value of the Buffer property of the Response object.

HRESULT get_Buffer(

  VARIANT_BOOL * fIsBuffering  //pointer to a Boolean VARIANT that

           // receives the Buffer value.

);

 

Parameters
fIsBuffering
[retval] [out] Points to a Boolean VARIANT that receives the Buffer value.
Remarks

When page output is buffered, the server does not send a response to the client until all of the server scripts on the current page have been processed, or until the Flush or End method has been called.

The Buffer property cannot be set after the server has sent output to the client. For this reason, the call to Response.Buffer should be the first line of the .asp file.

See Also

Response Object, IResponse::put_Buffer