Click or drag to resize
SameSiteMode Enumeration
Enum containing constants that indicate the value for the SameSite attribute of a cookie.

Namespace: CMS.Base
Assembly: CMS.Base (in CMS.Base.dll) Version: 13.0.131
Syntax
C#
public enum SameSiteMode
Members
  Member nameValueDescription
None0 The cookie will be sent with all requests.
Lax1 The cookie will be sent with "same-site" requests, and with "cross-site" top level navigation.
Strict2 The cookie will only be sent along with "same-site" requests.
See Also