Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

NopRouteNames.cs

namespace Nop.Core.Http;

/// 
/// Represents route names
/// 
public static partial class NopRouteNames
{
    /// 
    /// Represents general route names for standard requests
    /// 
    public static partial class General
    {
        /// 
        /// Gets the Apply for vendor account route name
        /// 
        public const string APPLY_VENDOR_ACCOUNT = "ApplyVendorAccount";

        /// 
        /// Gets the login route name
        /// 
        public const string LOGIN = "Login";

        /// 
        /// Gets the homepage route name
        /// 
        public const string HOMEPAGE = "Homepage";

        /// 
        /// Gets the customer addresses route name
        /// 
        public const string CUSTOMER_ADDRESSES = "CustomerAddresses";

        /// 
        /// Gets the customer account route name
        /// 
        public const string CUSTOMER_INFO = "CustomerInfo";

        /// 
        /// Gets the customer orders route name
        /// 
        public const string CUSTOMER_ORDERS = "CustomerOrders";

        /// 
        /// Gets the contact us route name
        /// 
        public const string CONTACT_US = "ContactUs";

        /// 
        /// Gets the product search route name
        /// 
        public const string SEARCH = "ProductSearch";        

        /// 
        /// Gets the compare products route name
        /// 
        public const string COMPARE_PRODUCTS = "CompareProducts";

        /// 
        /// Gets the new products route name
        /// 
        public const string NEW_PRODUCTS = "NewProducts";

        /// 
        /// Gets the blog route name
        /// 
        public const string BLOG = "Blog";

        /// 
        /// Gets the news route name
        /// 
        public const string NEWS = "NewsArchive";

        /// 
        /// Gets the forums route name
        /// 
        public const string BOARDS = "Boards";

        /// 
        /// Gets the product tags route name
        /// 
        public const string PRODUCT_TAGS = "ProductTagsAll";

        /// 
        /// Gets the recently viewed products route name
        /// 
        public const string RECENTLY_VIEWED_PRODUCTS = "RecentlyViewedProducts";

        /// 
        /// Gets the manufacturers route name
        /// 
        public const string MANUFACTURERS = "ManufacturerList";

        /// 
        /// Gets the vendors route name
        /// 
        public const string VENDORS = "VendorList";

        /// 
        /// Gets the sitemap route name
        /// 
        public const string SITEMAP = "Sitemap";

        /// 
        /// Gets the shopping cart route name
        /// 
        public const string CART = "ShoppingCart";

        /// 
        /// Gets the wishlist route name
        /// 
        public const string WISHLIST = "Wishlist";

        /// 
        /// Gets the gift card balance route name
        /// 
        public const string CHECK_GIFT_CARD_BALANCE = "CheckGiftCardBalance";
    }

    /// 
    /// Represents route names for standard requests
    /// 
    public static partial class Standard
    {
        /// 
        /// Gets the logout route name
        /// 
        public const string LOGOUT = "Logout";

        /// 
        /// Gets the register route name
        /// 
        public const string REGISTER = "Register";

        /// 
        /// Gets the checkout route name
        /// 
        public const string CHECKOUT = "Checkout";

        /// 
        /// Gets the one page checkout route name
        /// 
        public const string CHECKOUT_ONE_PAGE = "CheckoutOnePage";

        /// 
        /// Gets the checkout shipping address route name
        /// 
        public const string CHECKOUT_SHIPPING_ADDRESS = "CheckoutShippingAddress";

        /// 
        /// Gets the checkout select shipping address route name
        /// 
        public const string CHECKOUT_SELECT_SHIPPING_ADDRESS = "CheckoutSelectShippingAddress";

        /// 
        /// Gets the checkout billing address route name
        /// 
        public const string CHECKOUT_BILLING_ADDRESS = "CheckoutBillingAddress";

        /// 
        /// Gets the checkout select billing address route name
        /// 
        public const string CHECKOUT_SELECT_BILLING_ADDRESS = "CheckoutSelectBillingAddress";

        /// 
        /// Gets the checkout shipping method route name
        /// 
        public const string CHECKOUT_SHIPPING_METHOD = "CheckoutShippingMethod";

        /// 
        /// Gets the checkout payment method route name
        /// 
        public const string CHECKOUT_PAYMENT_METHOD = "CheckoutPaymentMethod";

        /// 
        /// Gets the checkout payment info route name
        /// 
        public const string CHECKOUT_PAYMENT_INFO = "CheckoutPaymentInfo";

        /// 
        /// Gets the checkout confirm route name
        /// 
        public const string CHECKOUT_CONFIRM = "CheckoutConfirm";

        /// 
        /// Gets the checkout completed route name
        /// 
        public const string CHECKOUT_COMPLETED = "CheckoutCompleted";

        /// 
        /// Gets the customer orders paged route name
        /// 
        public const string CUSTOMER_ORDERS_PAGED = "CustomerOrdersPaged";

        /// 
        /// Gets the customer reviews route name
        /// 
        public const string CUSTOMER_PRODUCT_REVIEWS = "CustomerProductReviews";

        /// 
        /// Gets the customer reviews paged route name
        /// 
        public const string CUSTOMER_PRODUCT_REVIEWS_PAGED = "CustomerProductReviewsPaged";

        /// 
        /// Gets the customer recurring payments route name
        /// 
        public const string CUSTOMER_RECURRING_PAYMENTS = "CustomerRecurringPayments";

        /// 
        /// Gets the change currency route name
        /// 
        public const string CHANGE_CURRENCY = "ChangeCurrency";

        /// 
        /// Gets the change language route name
        /// 
        public const string CHANGE_LANGUAGE = "ChangeLanguage";

        /// 
        /// Gets the change tax type route name
        /// 
        public const string CHANGE_TAX_TYPE = "ChangeTaxType";

        /// 
        /// Gets the file upload route name
        /// 
        public const string DOWNLOAD_GET_FILE_UPLOAD = "DownloadGetFileUpload";

        /// 
        /// Gets the email wishlist route name
        /// 
        public const string EMAIL_WISHLIST = "EmailWishlist";

        /// 
        /// Gets the sample download route name
        /// 
        public const string GET_SAMPLE_DOWNLOAD = "GetSampleDownload";

        /// 
        /// Gets the login page for checkout as guest route name
        /// 
        public const string LOGIN_CHECKOUT_AS_GUEST = "LoginCheckoutAsGuest";

        /// 
        /// Gets the multi-factor verification route name
        /// 
        public const string MULTIFACTOR_VERIFICATION = "MultiFactorVerification";

        /// 
        /// Gets the product email a friend route name
        /// 
        public const string PRODUCT_EMAIL_FRIEND = "ProductEmailAFriend";

        /// 
        /// Gets the set store theme route name
        /// 
        public const string SET_STORE_THEME = "SetStoreTheme";

        /// 
        /// Gets the vendor reviews route name
        /// 
        public const string VENDOR_REVIEWS = "VendorReviews";

        /// 
        /// Gets the register result page route name
        /// 
        public const string REGISTER_RESULT = "RegisterResult";

        /// 
        /// Gets the password recovery route name
        /// 
        public const string PASSWORD_RECOVERY = "PasswordRecovery";

        /// 
        /// Gets the password recovery confirmation route name
        /// 
        public const string PASSWORD_RECOVERY_CONFIRM = "PasswordRecoveryConfirm";

        /// 
        /// Gets the blog by tag route name
        /// 
        public const string BLOG_BY_TAG = "BlogByTag";

        /// 
        /// Gets the blog by month route name
        /// 
        public const string BLOG_BY_MONTH = "BlogByMonth";

        /// 
        /// Gets the blog RSS route name
        /// 
        public const string BLOG_RSS = "BlogRSS";

        /// 
        /// Gets the news RSS route name
        /// 
        public const string NEWS_RSS = "NewsRSS";

        /// 
        /// Gets the customer return request route name
        /// 
        public const string CUSTOMER_RETURN_REQUESTS = "CustomerReturnRequests";

        /// 
        /// Gets the customer downloadable products route name
        /// 
        public const string CUSTOMER_DOWNLOADABLE_PRODUCTS = "CustomerDownloadableProducts";

        /// 
        /// Gets the customer back in stock subscriptions route name
        /// 
        public const string CUSTOMER_BACK_IN_STOCK_SUBSCRIPTIONS = "CustomerBackInStockSubscriptions";

        /// 
        /// Gets the customer reward points route name
        /// 
        public const string CUSTOMER_REWARD_POINTS = "CustomerRewardPoints";

        /// 
        /// Gets the customer reward points paged route name
        /// 
        public const string CUSTOMER_REWARD_POINTS_PAGED = "CustomerRewardPointsPaged";

        /// 
        /// Gets the customer change password route name
        /// 
        public const string CUSTOMER_CHANGE_PASSWORD = "CustomerChangePassword";

        /// 
        /// Gets the customer avatar route name
        /// 
        public const string CUSTOMER_AVATAR = "CustomerAvatar";

        /// 
        /// Gets the account activation route name
        /// 
        public const string ACCOUNT_ACTIVATION = "AccountActivation";

        /// 
        /// Gets the email revalidation route name
        /// 
        public const string EMAIL_REVALIDATION = "EmailRevalidation";

        /// 
        /// Gets the customer forum subscriptions route name
        /// 
        public const string CUSTOMER_FORUM_SUBSCRIPTIONS = "CustomerForumSubscriptions";

        /// 
        /// Gets the customer address edit route name
        /// 
        public const string CUSTOMER_ADDRESS_EDIT = "CustomerAddressEdit";

        /// 
        /// Gets the customer address add route name
        /// 
        public const string CUSTOMER_ADDRESS_ADD = "CustomerAddressAdd";

        /// 
        /// Gets the customer multi-factor authentication config route name
        /// 
        public const string CUSTOMER_MULTI_FACTOR_AUTHENTICATION_PROVIDER_CONFIG = "CustomerMultiFactorAuthenticationProviderConfig";

        /// 
        /// Gets the customer profile route name
        /// 
        public const string CUSTOMER_PROFILE = "CustomerProfile";

        /// 
        /// Gets the customer profile paged route name
        /// 
        public const string CUSTOMER_PROFILE_PAGED = "CustomerProfilePaged";

        /// 
        /// Gets the order details route name
        /// 
        public const string ORDER_DETAILS = "OrderDetails";

        /// 
        /// Gets the shipment details route name
        /// 
        public const string SHIPMENT_DETAILS = "ShipmentDetails";

        /// 
        /// Gets the return request route name
        /// 
        public const string RETURN_REQUEST = "ReturnRequest";

        /// 
        /// Gets the reorder route name
        /// 
        public const string RE_ORDER = "ReOrder";

        /// 
        /// Gets the pdf invoice (file result) route name
        /// 
        public const string GET_ORDER_PDF_INVOICE = "GetOrderPdfInvoice";

        /// 
        /// Gets the print order details route name
        /// 
        public const string PRINT_ORDER_DETAILS = "PrintOrderDetails";

        /// 
        /// Gets the cancel order route name
        /// 
        public const string CANCEL_ORDER = "CancelOrder";

        /// 
        /// Gets the order downloads (file result) route name
        /// 
        public const string GET_DOWNLOAD = "GetDownload";

        /// 
        /// Gets the order downloads (file result) route name
        /// 
        public const string GET_LICENSE = "GetLicense";

        /// 
        /// Gets the download user agreement route name
        /// 
        public const string DOWNLOAD_USER_AGREEMENT = "DownloadUserAgreement";

        /// 
        /// Gets the get order note (file result) route name
        /// 
        public const string GET_ORDER_NOTE_FILE = "GetOrderNoteFile";

        /// 
        /// Gets the contact vendor route name
        /// 
        public const string CONTACT_VENDOR = "ContactVendor";

        /// 
        /// Gets the vendor info route name
        /// 
        public const string CUSTOMER_VENDOR_INFO = "CustomerVendorInfo";

        /// 
        /// Gets the customer GDPR tools route name
        /// 
        public const string GDPR_TOOLS = "GdprTools";

        /// 
        /// Gets the customer multi-factor authentication settings route name
        /// 
        public const string MULTI_FACTOR_AUTHENTICATION_SETTINGS = "MultiFactorAuthenticationSettings";

        /// 
        /// Gets the remove product from compare list route name
        /// 
        public const string REMOVE_PRODUCT_FROM_COMPARE_LIST = "RemoveProductFromCompareList";

        /// 
        /// Gets the clear compare list route name
        /// 
        public const string CLEAR_COMPARE_LIST = "ClearCompareList";

        /// 
        /// Gets the new products RSS (file result) route name
        /// 
        public const string NEW_PRODUCTS_RSS = "NewProductsRSS";

        /// 
        /// Gets the active discussions route name
        /// 
        //forums
        public const string ACTIVE_DISCUSSIONS = "ActiveDiscussions";

        /// 
        /// Gets the active discussions paged route name
        /// 
        public const string ACTIVE_DISCUSSIONS_PAGED = "ActiveDiscussionsPaged";

        /// 
        /// Gets the forums RSS (file result) route name
        /// 
        public const string ACTIVE_DISCUSSIONS_RSS = "ActiveDiscussionsRSS";

        /// 
        /// Gets the post edit route name
        /// 
        public const string POST_EDIT = "PostEdit";

        /// 
        /// Gets the post delete route name
        /// 
        public const string POST_DELETE = "PostDelete";

        /// 
        /// Gets the post create route name
        /// 
        public const string POST_CREATE = "PostCreate";

        /// 
        /// Gets the post create quote route name
        /// 
        public const string POST_CREATE_QUOTE = "PostCreateQuote";

        /// 
        /// Gets the topic edit route name
        /// 
        public const string TOPIC_EDIT = "TopicEdit";

        /// 
        /// Gets the topic delete route name
        /// 
        public const string TOPIC_DELETE = "TopicDelete";

        /// 
        /// Gets the topic create route name
        /// 
        public const string TOPIC_CREATE = "TopicCreate";

        /// 
        /// Gets the topic move route name
        /// 
        public const string TOPIC_MOVE = "TopicMove";

        /// 
        /// Gets the topic slug route name
        /// 
        public const string TOPIC_SLUG = "TopicSlug";

        /// 
        /// Gets the topic slug paged route name
        /// 
        public const string TOPIC_SLUG_PAGED = "TopicSlugPaged";

        /// 
        /// Gets the forums RSS (file result) route name
        /// 
        public const string FORUM_RSS = "ForumRSS";

        /// 
        /// Gets the forum slug route name
        /// 
        public const string FORUM_SLUG = "ForumSlug";

        /// 
        /// Gets the forum slug paged route name
        /// 
        public const string FORUM_SLUG_PAGED = "ForumSlugPaged";

        /// 
        /// Gets the forum group slug route name
        /// 
        public const string FORUM_GROUP_SLUG = "ForumGroupSlug";

        /// 
        /// Gets the forum search route name
        /// 
        public const string BOARDS_SEARCH = "Search";

        /// 
        /// Gets the private messages route name
        /// 
        public const string PRIVATE_MESSAGES = "PrivateMessages";

        /// 
        /// Gets the private messages paged route name
        /// 
        public const string PRIVATE_MESSAGES_PAGED = "PrivateMessagesPaged";

        /// 
        /// Gets the private messages inbox route name
        /// 
        public const string PRIVATE_MESSAGES_INBOX = "PrivateMessagesInbox";

        /// 
        /// Gets the private messages sent route name
        /// 
        public const string PRIVATE_MESSAGES_SENT = "PrivateMessagesSent";

        /// 
        /// Gets the send PM route name
        /// 
        public const string SEND_PM = "SendPM";

        /// 
        /// Gets the send PM reply route name
        /// 
        public const string SEND_PM_REPLY = "SendPMReply";

        /// 
        /// Gets the view PM route name
        /// 
        public const string VIEW_PM = "ViewPM";

        /// 
        /// Gets the delete PM route name
        /// 
        public const string DELETE_PM = "DeletePM";

        /// 
        /// Gets the newsletter activation route name
        /// 
        public const string NEWSLETTER_ACTIVATION = "NewsletterActivation";

        /// 
        /// Gets the robots.txt (file result) route name
        /// 
        public const string ROBOTS_TXT = "robots.txt";

        /// 
        /// Gets the sitemap.xml (file result) route name
        /// 
        public const string SITEMAP_XML = "sitemap.xml";

        /// 
        /// Gets the sitemap-indexed.xml (file result) route name
        /// 
        public const string SITEMAP_INDEXED_XML = "sitemap-indexed.xml";

        /// 
        /// Gets the store closed route name
        /// 
        public const string STORE_CLOSED = "StoreClosed";

        /// 
        /// Gets the install route name
        /// 
        public const string INSTALLATION = "Installation";

        /// 
        /// Gets the install change language route name
        /// 
        public const string INSTALLATION_CHANGE_LANGUAGE = "InstallationChangeLanguage";

        /// 
        /// Gets the page not found route name
        /// 
        public const string PAGE_NOT_FOUND = "PageNotFound";

        /// 
        /// Gets the product search by filter level values route name
        /// 
        public const string PRODUCT_SEARCH_BY_FILTER_LEVEL_VALUES = "ProductSearchByFilterLevelValues";
    }

    /// 
    /// Represents route names for AJAX requests
    /// 
    public static partial class Ajax
    {
        /// 
        /// Gets the add product to cart route name (without any attributes and options). Used on catalog pages
        /// 
        public const string ADD_PRODUCT_TO_CART_CATALOG = "AddProductToCart-Catalog";

        /// 
        /// Gets the add product to cart route name (with attributes and options). Used on product details pages
        /// 
        public const string ADD_PRODUCT_TO_CART_DETAILS = "AddProductToCart-Details";

        /// 
        /// Gets the comparing products route name
        /// 
        public const string ADD_PRODUCT_TO_COMPARE = "AddProductToCompare";

        /// 
        /// Gets the add custom wishlist route name
        /// 
        public const string ADD_WISHLIST = "AddWishlist";

        /// 
        /// Gets the back in stock subscribe send route name
        /// 
        public const string BACK_IN_STOCK_SUBSCRIBE_SEND = "BackInStockSubscribeSend";

        /// 
        /// Gets the back in stock notifications route name
        /// 
        public const string BACK_IN_STOCK_SUBSCRIBE_POPUP = "BackInStockSubscribePopup";

        /// 
        /// Gets the select shipping option route name
        /// 
        public const string SELECT_SHIPPING_OPTION = "SelectShippingOption";

        /// 
        /// Gets the check username availability route name
        /// 
        public const string CHECK_USERNAME_AVAILABILITY = "CheckUsernameAvailability";

        /// 
        /// Gets the checkout attribute change route name
        /// 
        public const string CHECKOUT_ATTRIBUTE_CHANGE = "CheckoutAttributeChange";

        /// 
        /// Gets the customer address delete route name
        /// 
        public const string CUSTOMER_ADDRESS_DELETE = "CustomerAddressDelete";

        /// 
        /// Gets the customer remove external association route name
        /// 
        public const string CUSTOMER_REMOVE_EXTERNAL_ASSOCIATION = "CustomerRemoveExternalAssociation";

        /// 
        /// Gets the delete custom wishlist route name
        /// 
        public const string DELETE_CUSTOM_WISHLIST = "DeleteCustomWishlist";

        /// 
        /// Gets the estimate shipping route name
        /// 
        public const string ESTIMATE_SHIPPING = "EstimateShipping";

        /// 
        /// Gets the move product to custom wishlist route name. Used on catalog/product detail page.
        /// 
        public const string MOVE_PRODUCT_TO_CUSTOM_WISHLIST = "MoveProductToCustomWishList";

        /// 
        /// Gets the move shopping cart to custom wishlist route name. Used on catalog/product detail page.
        /// 
        public const string MOVE_CART_TO_CUSTOM_WISHLIST = "MoveToCustomWishlist";

        /// 
        /// Gets the product estimate shipping route name
        /// 
        public const string PRODUCT_ESTIMATE_SHIPPING = "ProductEstimateShipping";

        /// 
        /// Gets the product search autocomplete route name
        /// 
        public const string PRODUCT_SEARCH_AUTOCOMPLETE = "ProductSearchAutoComplete";

        /// 
        /// Gets the set review helpfulness route name
        /// 
        public const string SET_PRODUCT_REVIEW_HELPFULNESS = "SetProductReviewHelpfulness";

        /// 
        /// Gets the subscribe newsletters route name
        /// 
        public const string SUBSCRIBE_NEWSLETTER = "SubscribeNewsletter";

        /// 
        /// Gets the topics route name
        /// 
        public const string TOPIC_POPUP = "TopicPopup";

        /// 
        /// Gets the poll vote route name
        /// 
        public const string POLL_VOTE = "PollVote";

        /// 
        /// Gets the state list by country ID route name
        /// 
        public const string GET_STATES_BY_COUNTRY_ID = "GetStatesByCountryId";

        /// 
        /// Gets the filter level values route name
        /// 
        public const string GET_FILTER_LEVEL_VALUES = "GetFilterLevelValues";

        /// 
        /// Gets the EU Cookie law accept button handler route name
        /// 
        public const string EU_COOKIE_LAW_ACCEPT = "EuCookieLawAccept";

        /// 
        /// Gets the authenticate topic route name
        /// 
        public const string TOPIC_AUTHENTICATE = "TopicAuthenticate";

        /// 
        /// Gets the category products route name
        /// 
        public const string GET_CATEGORY_PRODUCTS = "GetCategoryProducts";

        /// 
        /// Gets the manufacturer products route name
        /// 
        public const string GET_MANUFACTURER_PRODUCTS = "GetManufacturerProducts";

        /// 
        /// Gets the tag products route name
        /// 
        public const string GET_TAG_PRODUCTS = "GetTagProducts";

        /// 
        /// Gets the search products route name
        /// 
        public const string SEARCH_PRODUCTS = "SearchProducts";

        /// 
        /// Gets the search products by filter level values route name
        /// 
        public const string SEARCH_PRODUCTS_BY_FILTER_LEVEL_VALUES = "SearchProductsByFilterLevelValues";

        /// 
        /// Gets the vendor products route name
        /// 
        public const string GET_VENDOR_PRODUCTS = "GetVendorProducts";

        /// 
        /// Gets the new products route name
        /// 
        public const string GET_NEW_PRODUCTS = "GetNewProducts";

        /// 
        /// Gets the product combinations route name
        /// 
        public const string GET_PRODUCT_COMBINATIONS = "GetProductCombinations";

        /// 
        /// Gets the product attributes with "upload file" type route name
        /// 
        public const string UPLOAD_FILE_PRODUCT_ATTRIBUTE = "UploadFileProductAttribute";

        /// 
        /// Gets the checkout attributes with "upload file" type route name
        /// 
        public const string UPLOAD_FILE_CHECKOUT_ATTRIBUTE = "UploadFileCheckoutAttribute";

        /// 
        /// Gets the attribute change type route name
        /// 
        public const string PRODUCT_DETAILS_ATTRIBUTE_CHANGE = "ProductDetailsAttributeChange";

        /// 
        /// Gets the restart application route name
        /// 
        public const string INSTALLATION_RESTART_APPLICATION = "InstallationRestartApplication";

        /// 
        /// Gets the post vote route name
        /// 
        public const string POST_VOTE = "PostVote";

        /// 
        /// Gets the topic watch route name
        /// 
        public const string TOPIC_WATCH = "TopicWatch";

        /// 
        /// Gets the forum watch route name
        /// 
        public const string FORUM_WATCH = "ForumWatch";

        /// 
        /// Gets the return request with "upload file" support route name
        /// 
        public const string UPLOAD_FILE_RETURN_REQUEST = "UploadFileReturnRequest";
    }
}