CefCookie

class CefCookie

Cookie information.

Constructors

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

Link copied to clipboard
The cookie creation date.
Link copied to clipboard
If domain is empty a host cookie will be created instead of a domain cookie.
Link copied to clipboard
Link copied to clipboard
The cookie expiration date is only valid if |has_expires| is true.
Link copied to clipboard
If httponly is true the cookie will only be sent for HTTP requests.
Link copied to clipboard
The cookie last access date.
Link copied to clipboard
The cookie name.
Link copied to clipboard
If path is non-empty only URLs at or below the path will get the cookie value.
Link copied to clipboard
If secure is true the cookie will only be sent for HTTPS requests.
Link copied to clipboard
The cookie value.