Enum CookiePriority
Represents the cookie's 'Priority' status: https://tools.ietf.org/html/draft-west-cookie-priority-00
[JsonConverter(typeof(JsonEnumMemberConverter<CookiePriority>))]
public enum CookiePriority
Fields
[EnumMember(Value = "High")] High = 2Enumerated member for the High value.
[EnumMember(Value = "Low")] Low = 0Enumerated member for the Low value.
[EnumMember(Value = "Medium")] Medium = 1Enumerated member for the Medium value.