Record: CookieOptions
The options to be used when initializing the http:Cookie
.
Closed record
Fields
- path string?
- domain string?
- expires string?
- maxAge int(default 0)
- httpOnly boolean(default false)
- secure boolean(default false)
- createdTime Utc(default time:utcNow())
- lastAccessedTime Utc(default time:utcNow())
- hostOnly boolean(default false)
URI path to which the cookie belongs
Host to which the cookie will be sent
Maximum lifetime of the cookie represented as the date and time at which the cookie expires
Maximum lifetime of the cookie represented as the number of seconds until the cookie expires
Cookie is sent only to HTTP requests
Cookie is sent only to secure channels
At what time the cookie was created
Last-accessed time of the cookie
Cookie is sent only to the requested host