Cookie SameSite attribute values
Source position: httpdefs.pp line 165
type TSameSite = ( |
||
ssEmpty, |
|
No SameSite attribute |
ssNone, |
|
Send with all cross-site requests |
ssStrict, |
|
Send only with same-site requests |
ssLax |
|
Send with top-level navigation |
); |
TSameSite defines the possible values for the SameSite cookie attribute, which controls when cookies are sent with cross-site requests.
|
HTTP cookie implementation |