Sets whether any output is raw on the specified response object.
Syntax
setIsRaw( response , boolean )
response.setIsRaw( boolean )
Parameters
response
|
the response object to use.
|
boolean
|
whether output should be raw.
true if output should be raw.
false if output should not be raw.
|
Returns
Notes
This method is only accessible by ss.
Normally output is not raw. This value can only be changed before any output. An exception will occur if an attempt is made to change the value after output is made. If raw output is enabled the program is responsible for output of all headers.
Example
Response( ).setIsRaw( false )
|