3 instantiations of UrlRouteContext
Microsoft.AspNetCore.Mvc.Core (2)
Routing\UrlHelperBase.cs (1)
56return RouteUrl(new UrlRouteContext()
UrlHelperExtensions.cs (1)
339return helper.RouteUrl(new UrlRouteContext()
Microsoft.AspNetCore.Mvc.ViewFeatures (1)
RemoteAttribute.cs (1)
115var url = urlHelper.RouteUrl(new UrlRouteContext()
12 references to UrlRouteContext
Microsoft.AspNetCore.Mvc.Abstractions (9)
IUrlHelper.cs (3)
77/// name, and fragment specified by <see cref="UrlRouteContext"/>. Generates an absolute URL if 85/// The value of <see cref="UrlRouteContext.Host" /> should be a trusted value. Relying on the value of the current request 91string? RouteUrl(UrlRouteContext routeContext);
Routing\UrlRouteContext.cs (6)
7/// Context object to be used for the URLs that <see cref="IUrlHelper.RouteUrl(UrlRouteContext)"/> generates. 12/// The name of the route that <see cref="IUrlHelper.RouteUrl(UrlRouteContext)"/> uses to generate URLs. 21/// The object that contains the route values that <see cref="IUrlHelper.RouteUrl(UrlRouteContext)"/> 31/// The protocol for the URLs that <see cref="IUrlHelper.RouteUrl(UrlRouteContext)"/> generates, 41/// The host name for the URLs that <see cref="IUrlHelper.RouteUrl(UrlRouteContext)"/> generates. 50/// The fragment for the URLs that <see cref="IUrlHelper.RouteUrl(UrlRouteContext)"/> generates.
Microsoft.AspNetCore.Mvc.Core (3)
Routing\EndpointRoutingUrlHelper.cs (1)
77public override string? RouteUrl(UrlRouteContext routeContext)
Routing\UrlHelper.cs (1)
64public override string? RouteUrl(UrlRouteContext routeContext)
Routing\UrlHelperBase.cs (1)
69public abstract string? RouteUrl(UrlRouteContext routeContext);