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