Return whether output is buffered on the specified response object.
Syntax
getIsBuffered( response )
response.getIsBuffered( )
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( ).getIsBuffered( ) then
break
end
|