Table of Contents

Class CookieLevel

Namespace
CMS.Helpers
Assembly
CMS.Helpers.dll

Constants for the system cookie levels

[Obsolete("Will be removed in a later version. Superseded by CMS.Websites.CookieLevelConstants.")]
[ObsoleteSince(27, 0)]
public static class CookieLevel
Inheritance
object
CookieLevel

Fields

All

Level value to allow all available cookies "1000"

public const int All = 1000

Field Value

int

Editor

Level value for the cookies required for editors (for the editing UI to work properly) "100"

public const int Editor = 100

Field Value

int

Essential

Level value for the essential cookies (required to run the system) "0"

public const int Essential = 0

Field Value

int

None

Level value to disable all cookies "-1000"

public const int None = -1000

Field Value

int

System

Level value for the system cookies required to determine the user cookie level "-100"

public const int System = -100

Field Value

int

Visitor

Level value for normal visitor cookies (not necessarily required to run the system) "200"

public const int Visitor = 200

Field Value

int