Table of Contents

Class CookieLevelConstants

Namespace
CMS.Websites
Assembly
CMS.Websites.dll

Predefined constants for cookie level values.

public static class CookieLevelConstants
Inheritance
object
CookieLevelConstants

Fields

ALL

Level value to allow all available cookies

public const int ALL = 1000

Field Value

int

EDITOR

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

public const int EDITOR = 100

Field Value

int

ESSENTIAL

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

public const int ESSENTIAL = 0

Field Value

int

NONE

Level value to disable all cookies

public const int NONE = -1000

Field Value

int

SYSTEM

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

public const int SYSTEM = -100

Field Value

int

VISITOR

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

public const int VISITOR = 200

Field Value

int