Returns whether the specified cookie is transferred over a secured connection.
Syntax
isSecure( cookie )
cookie.isSecure( )
Parameters
cookie
|
a cookie object to use.
|
Returns
boolean
|
whether the cookie is transferred over a secured connection.
true if transferred over a secure connection.
false if not transferred over a secure connection.
|
Notes
This method is only accessible by ss and by iScript Servlet.
Example
if cookie.isSecured( ) then
break
end
|