Class Cookie
Cookie
public sealed class Cookie
- Inheritance
-
Cookie
- Inherited Members
Properties
Domain
domain
[JsonPropertyName("domain")]
public string Domain { get; set; }
Property Value
Expires
expires
[JsonPropertyName("expires")]
public double Expires { get; set; }
Property Value
HttpOnly
httpOnly
[JsonPropertyName("httpOnly")]
public bool HttpOnly { get; set; }
Property Value
Name
name
[JsonPropertyName("name")]
public string Name { get; set; }
Property Value
Path
path
[JsonPropertyName("path")]
public string Path { get; set; }
Property Value
Priority
priority
[JsonPropertyName("priority")]
public CookiePriority Priority { get; set; }
Property Value
SameSite
sameSite
[JsonPropertyName("sameSite")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public CookieSameSite? SameSite { get; set; }
Property Value
Secure
secure
[JsonPropertyName("secure")]
public bool Secure { get; set; }
Property Value
Session
session
[JsonPropertyName("session")]
public bool Session { get; set; }
Property Value
Size
size
[JsonPropertyName("size")]
public long Size { get; set; }
Property Value
Value
value
[JsonPropertyName("value")]
public string Value { get; set; }