namespace Nop.Core.Http; /// /// Represents default values related to cookies /// public static partial class NopCookieDefaults { /// /// Gets the cookie name prefix /// public static string Prefix => ".Nop"; /// /// Gets a cookie name of the customer /// public static string CustomerCookie => ".Customer"; /// /// Gets a cookie name of the antiforgery /// public static string AntiforgeryCookie => ".Antiforgery"; /// /// Gets a cookie name of the session state /// public static string SessionCookie => ".Session"; /// /// Gets a cookie name of the culture /// public static string CultureCookie => ".Culture"; /// /// Gets a cookie name of the temp data /// public static string TempDataCookie => ".TempData"; /// /// Gets a cookie name of the installation language /// public static string InstallationLanguageCookie => ".InstallationLanguage"; /// /// Gets a cookie name of the compared products /// public static string ComparedProductsCookie => ".ComparedProducts"; /// /// Gets a cookie name of the recently viewed products /// public static string RecentlyViewedProductsCookie => ".RecentlyViewedProducts"; /// /// Gets a cookie name of the authentication /// public static string AuthenticationCookie => ".Authentication"; /// /// Gets a cookie name of the external authentication /// public static string ExternalAuthenticationCookie => ".ExternalAuthentication"; /// /// Gets a cookie name of the Eu Cookie Law Warning /// public static string IgnoreEuCookieLawWarning => ".IgnoreEuCookieLawWarning"; }