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
name
-
read / write
Gets and sets the name.
-
String
value
-
read / write
Gets and sets the value.
-
DateTime
expires
-
read / write
Gets and sets the expiry date.
-
int
maxAge
-
read / write
Gets and sets the max age. A value of 0 means delete cookie
now.
-
String
domain
-
read / write
Gets and sets the domain.
-
String
path
-
read / write
Gets and sets the path.
-
bool
secure
-
read / write
Gets and sets whether this cookie is secure.
-
bool
httpOnly
-
read / write
Gets and sets whether this cookie is HTTP only.
Methods
-
toString()
→
String
-
Returns the formatted string representation of the cookie. The
string representation can be used for for setting the Cookie or
'set-cookie' headers