Class DeviceBoundSessionCookieCraving
A device bound session's cookie craving.
public sealed class DeviceBoundSessionCookieCraving
- Inheritance
-
DeviceBoundSessionCookieCraving
- Inherited Members
Properties
Domain
The domain of the craving.
[JsonPropertyName("domain")]
public string Domain { get; set; }
Property Value
HttpOnly
The HttpOnly attribute of the craving attributes.
[JsonPropertyName("httpOnly")]
public bool HttpOnly { get; set; }
Property Value
Name
The name of the craving.
[JsonPropertyName("name")]
public string Name { get; set; }
Property Value
Path
The path of the craving.
[JsonPropertyName("path")]
public string Path { get; set; }
Property Value
SameSite
The SameSite attribute of the craving attributes.
[JsonPropertyName("sameSite")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public CookieSameSite? SameSite { get; set; }
Property Value
Secure
The Secure attribute of the craving attributes.
[JsonPropertyName("secure")]
public bool Secure { get; set; }