UrlHelperBase.RouteUrl(UrlRouteContext) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Generates a URL with an absolute path, which contains the route name, route values, protocol to use, host
name, and fragment specified by UrlRouteContext. Generates an absolute URL if
Protocol and Host are non-null
.
See the remarks section for important security information.
public:
abstract System::String ^ RouteUrl(Microsoft::AspNetCore::Mvc::Routing::UrlRouteContext ^ routeContext);
public abstract string RouteUrl (Microsoft.AspNetCore.Mvc.Routing.UrlRouteContext routeContext);
public abstract string? RouteUrl (Microsoft.AspNetCore.Mvc.Routing.UrlRouteContext routeContext);
abstract member RouteUrl : Microsoft.AspNetCore.Mvc.Routing.UrlRouteContext -> string
Public MustOverride Function RouteUrl (routeContext As UrlRouteContext) As String
Parameters
- routeContext
- UrlRouteContext
The context object for the generated URLs for a route.
Returns
The generated URL.