Used to indicate that any output is raw on the specified response object.
Syntax
isRaw( response )
response.isRaw( )
Parameters
response
|
the response object to use.
|
Returns
boolean
|
whether output is raw.
true if output is raw.
false if output is not raw.
|
Notes
This method is only accessible by ss.
Example
if Response( ).isRaw( ) then
break
end
Syntax
isRaw( response , boolean )
response.isRaw( 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( ).isRaw( false )
|