Class HttpCookie
Represents web view cookie object.
public class HttpCookie
- Inheritance
-
HttpCookie
- Inherited Members
Constructors
HttpCookie()
Creates new instance of HttpCookie.
public HttpCookie()
Properties
Creation
The cookie creation date.
public DateTime Creation { get; set; }
Property Value
Domain
The cookie domain.
public string Domain { get; set; }
Property Value
Expires
The cookie expire date.
public DateTime? Expires { get; set; }
Property Value
HttpOnly
If true the cookie will only be sent for HTTP requests.
public bool HttpOnly { get; set; }
Property Value
LastAccess
The cookie last access date. This is automatically populated by the system on access.
public DateTime LastAccess { get; set; }
Property Value
Name
The cookie name.
public string Name { get; set; }
Property Value
Path
The cookie path.
public string Path { get; set; }
Property Value
Priority
Priority
public CookiePriority Priority { get; set; }
Property Value
SameSite
Same site
public CookieSameSite SameSite { get; set; }
Property Value
Secure
If true the cookie will only be sent for HTTPS requests.
public bool Secure { get; set; }
Property Value
Value
The cookie value.
public string Value { get; set; }