Try your search with a different keyword or use * as a wildcard.
using Nop.Core;
using Nop.Core.Domain.Seo;
namespace Nop.Web.Framework.Mvc.Routing;
/// <summary>
/// Represents a helper to build specific URLs within an application
/// </summary>
public partial interface INopUrlHelper
{
/// <summary>
/// Generate a generic URL for the specified entity which supports slug
/// </summary>
/// <typeparam name="TEntity">Entity type that supports slug</typeparam>
/// <param name="entity">An entity which supports slug</param>
/// <param name="protocol">The protocol for the URL, such as "http" or "https"</param>
/// <param name="host">The host name for the URL</param>
/// <param name="fragment">The fragment for the URL</param>
/// <param name="languageId">Language identifier; pass null to use the current language</param>
/// <param name="ensureTwoPublishedLanguages">A value indicating whether to ensure that we have at least two published languages; otherwise, load only default value</param>
/// <returns>
/// A task that represents the asynchronous operation
/// The task result contains the generated URL
/// </returns>
Task<string> RouteGenericUrlAsync<TEntity>(TEntity entity,
string protocol = null, string host = null, string fragment = null, int? languageId = null, bool ensureTwoPublishedLanguages = true)
where TEntity : BaseEntity, ISlugSupported;
/// <summary>
/// Generate a generic URL for the specified entity type and route values
/// </summary>
/// <typeparam name="TEntity">Entity type that supports slug</typeparam>
/// <param name="values">An object that contains route values</param>
/// <param name="protocol">The protocol for the URL, such as "http" or "https"</param>
/// <param name="host">The host name for the URL</param>
/// <param name="fragment">The fragment for the URL</param>
/// <returns>
/// A task that represents the asynchronous operation
/// The task result contains the generated URL
/// </returns>
Task<string> RouteGenericUrlAsync<TEntity>(object values = null, string protocol = null, string host = null, string fragment = null)
where TEntity : BaseEntity, ISlugSupported;
/// <summary>
/// Generate a URL for topic by the specified system name
/// </summary>
/// <param name="systemName">Topic system name</param>
/// <param name="protocol">The protocol for the URL, such as "http" or "https"</param>
/// <param name="host">The host name for the URL</param>
/// <param name="fragment">The fragment for the URL</param>
/// <returns>
/// A task that represents the asynchronous operation
/// The task result contains the generated URL
/// </returns>
Task<string> RouteTopicUrlAsync(string systemName, string protocol = null, string host = null, string fragment = null);
/// <summary>
/// Generate a URL for the specified route name
/// </summary>
/// <param name="routeName">The name of the route that is used to generate URL</param>
/// <param name="values">An object that contains route values</param>
/// <param name="protocol">The protocol for the URL, such as "http" or "https"</param>
/// <param name="host">The host name for the URL</param>
/// <param name="fragment">The fragment for the URL</param>
/// <returns>
/// The generated URL
/// </returns>
string RouteUrl(string routeName, object values = null, string protocol = null, string host = null, string fragment = null);
}