Representation of a cookie. For cookies received by the server as
Cookie header values only name
and value
fields will be
set. When building a cookie for the 'set-cookie' header in the server
and when receiving cookies in the client as 'set-cookie' headers all
fields can be used.
Properties
- String domain
-
read / writeGets and sets the domain. /
- DateTime expires
-
read / writeGets and sets the expiry date. /
- bool httpOnly
-
read / writeGets and sets whether this cookie is HTTP only. /
- int maxAge
-
read / writeGets and sets the max age. A value of
0
means delete cookie now. / - String name
-
read / writeGets and sets the name. /
- String path
-
read / writeGets and sets the path. /
- bool secure
-
read / writeGets and sets whether this cookie is secure. /
- String value
-
read / writeGets and sets the value. /
Constructors
- Cookie([String name, String value])
- Creates a new cookie optionally setting the name and value.
- Cookie.fromSetCookieValue(String value)
- Creates a new cookie by parsing a header value from a 'set-cookie' header.