Click or drag to resize

SameSite Enumeration

The SameSite cookie attribute values of the Set-Cookie HTTP response header. This attribute is used to declare in which context the cookies can be sent.

Namespace:  DotNetBrowser.Cookies
Assembly:  DotNetBrowser (in DotNetBrowser.dll) Version: 2.13.0
Syntax
C#
public enum SameSite
Members
  Member nameValueDescription
Unspecified0 Reserved value.
StrictMode1 The cookie can only be sent in a first-party context, when the cookie matches the domain of the current site.
LaxMode2 The cookie can be sent with top-level navigations from a third-party site to the web site with the domain matching the cookie. This is the default value in modern browsers.
None3 The cookie can be sent in a third-party context. To use this mode the cookie must also be marked as secure.
See Also