Supported Clients
SmartClient
WebClient
NGClient

Methods Summary
String
getDomain()
Returns the cookie domain.
String
getName()
Returns the cookie name.
String
getPath()
Returns the cookie path.
Boolean
getSecure()
Returns the cookie secure attribute.
String
getValue()
Returns the cookie value.

Methods Details

getDomain()

Returns the cookie domain.

Returns

String

Supported Clients

SmartClient,WebClient,NGClient

Sample

var cookie = client.getCookie('cookieName')
var domain = cookie.getDomain();

getName()

Returns the cookie name.

Returns

String

Supported Clients

SmartClient,WebClient,NGClient

Sample

var cookie = client.getCookie('cookieName')
var name = cookie.getName();

getPath()

Returns the cookie path.

Returns

String

Supported Clients

SmartClient,WebClient,NGClient

Sample

var cookie = client.getCookie('cookieName')
var path = cookie.getPath();

getSecure()

Returns the cookie secure attribute.

Returns

Boolean

Supported Clients

SmartClient,WebClient,NGClient

Sample

var cookie = client.getCookie('cookieName')
var path = cookie.getSecure();

getValue()

Returns the cookie value.

Returns

String

Supported Clients

SmartClient,WebClient,NGClient

Sample

var cookie = client.getCookie('cookieName')
var value = cookie.getValue();