Class CookieParam
CookieParam
public sealed class CookieParam
- Inheritance
-
CookieParam
- Inherited Members
Properties
Domain
domain
[JsonPropertyName("domain")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string Domain { get; set; }
Property Value
Expires
expires
[JsonPropertyName("expires")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public double? Expires { get; set; }
Property Value
HttpOnly
httpOnly
[JsonPropertyName("httpOnly")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public bool? HttpOnly { get; set; }
Property Value
- bool?
Name
name
[JsonPropertyName("name")]
public string Name { get; set; }
Property Value
Path
path
[JsonPropertyName("path")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string Path { get; set; }
Property Value
Priority
priority
[JsonPropertyName("priority")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
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")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public bool? Secure { get; set; }
Property Value
- bool?
Url
url
[JsonPropertyName("url")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string Url { get; set; }
Property Value
Value
value
[JsonPropertyName("value")]
public string Value { get; set; }