aspnetcore/src/Microsoft.AspNet.Mvc.Core/IUrlHelper.cs

14 lines
398 B
C#

namespace Microsoft.AspNet.Mvc
{
public interface IUrlHelper
{
string Action(string action, string controller, object values, string protocol, string host, string fragment);
string Content(string contentPath);
bool IsLocalUrl(string url);
string RouteUrl(string routeName, object values, string protocol, string host, string fragment);
}
}