Table of Contents

Enum CookieSameSite

Namespace
Playnite.SDK
Assembly
Playnite.SDK.dll

Cookie same site values.

public enum CookieSameSite

Fields

LaxMode = 2

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.

NoRestriction = 1

Cookies will be sent in all contexts, i.e sending cross-origin is allowed. None used to be the default value, but recent browser versions made Lax the default value to have reasonably robust defense against some classes of cross-site request forgery (CSRF) attacks.

StrictMode = 3

Cookies will only be sent in a first-party context and not be sent along with requests initiated by third party websites.

Unspecified = 0

Unspecified

Remarks