Used to indicate that output is buffered on the specified response object.
Syntax
isBuffered( response )
response.isBuffered( )
Parameters
response
|
the response object to use.
|
Returns
boolean
|
whether output is buffered.
true if output should be buffered.
false if output should not be buffered.
|
Notes
This method is only accessible by ss and by iScript Servlet.
Example
if Response( ).isBuffered( ) then
break
end
Syntax
isBuffered( response , boolean )
response.isBuffered( boolean )
Parameters
response
|
the response object to use.
|
boolean
|
whether output should be buffered.
true if output should be buffered.
false if output should not be buffered.
|
Returns
Notes
This method is only accessible by ss and by iScript Servlet.
Normally output is not buffered. This value can only be enabled before any unbuffered output is made. An exception will occur if an attempt is made to to enable buffered output after unbuffered output is made. If buffered output is enabled the output buffer is outputted when buffered output is disabled, when the buffer is flushed or when the program ends, exists or terminates.
Example
Response( ).isBuffered( false )
|