C# Class MyTested.AspNetCore.Mvc.Internal.Routing.MvcRouteResolver

Used for resolving HTTP request to a route.
ファイルを表示 Open project: ivaylokenov/MyTested.AspNetCore.Mvc

Public Methods

Method Description
Resolve ( IServiceProvider services, IRouter router, Microsoft.AspNetCore.Routing.RouteContext routeContext ) : ResolvedRouteContext

Resolves HTTP request to a route using the provided route context and the action selector and invoker services.

Method Details

Resolve() public static method

Resolves HTTP request to a route using the provided route context and the action selector and invoker services.
public static Resolve ( IServiceProvider services, IRouter router, Microsoft.AspNetCore.Routing.RouteContext routeContext ) : ResolvedRouteContext
services IServiceProvider Application services from which the route will be resolved.
router IRouter IRouter to resolve route values.
routeContext Microsoft.AspNetCore.Routing.RouteContext RouteContext to use for resolving the route values.
return ResolvedRouteContext