Summary
Specifies possible values for the SameSite option on HTTP cookies.
Remarks
See: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie/SameSite
Enum values
| 0 |
Cookies are allowed to be sent with top-level navigations and will be sent along with GET request initiated by
third party website. This is the default value in modern browsers. |
| 2 | Cookies will be sent in all contexts, i.e sending cross-origin is allowed. |
| 1 |
Cookies will only be sent in a first-party context and not be sent along with requests initiated by third
party websites. |