toggle menu
KCEF
jvm
switch theme
search in API
jcef
/
org.cef.network
/
CefCookie
Cef
Cookie
class
CefCookie
Cookie information.
Members
Constructors
Cef
Cookie
Link copied to clipboard
constructor
(
name
:
String
,
value
:
String
,
domain
:
String
,
path
:
String
,
secure
:
Boolean
,
httponly
:
Boolean
,
creation
:
Date
,
lastAccess
:
Date
,
hasExpires
:
Boolean
,
expires
:
Date
)
Properties
creation
Link copied to clipboard
val
creation
:
Date
The cookie creation date.
domain
Link copied to clipboard
val
domain
:
String
If domain is empty a host cookie will be created instead of a domain cookie.
expires
Link copied to clipboard
val
expires
:
Date
has
Expires
Link copied to clipboard
val
hasExpires
:
Boolean
The cookie expiration date is only valid if |has_expires| is true.
httponly
Link copied to clipboard
val
httponly
:
Boolean
If httponly is true the cookie will only be sent for HTTP requests.
last
Access
Link copied to clipboard
val
lastAccess
:
Date
The cookie last access date.
name
Link copied to clipboard
val
name
:
String
The cookie name.
path
Link copied to clipboard
val
path
:
String
If path is non-empty only URLs at or below the path will get the cookie value.
secure
Link copied to clipboard
val
secure
:
Boolean
If secure is true the cookie will only be sent for HTTPS requests.
value
Link copied to clipboard
val
value
:
String
The cookie value.