Enum SameSiteMode
Enum containing constants that indicate the value for the SameSite attribute of a cookie.
public enum SameSiteMode
- Extension Methods
Fields
Lax = 1
The cookie will be sent with "same-site" requests, and with "cross-site" top level navigation.
None = 0
The cookie will be sent with all requests.
Strict = 2
The cookie will only be sent along with "same-site" requests.