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

Contains information about a resolved route from the ASP.NET Web API internal pipeline.
ファイルを表示 Open project: ivaylokenov/MyTested.AspNetCore.Mvc

Public Methods

Method Description
ResolvedRouteContext ( TypeInfo controllerType, string controllerName, string action, object>.IDictionary routeValues, Microsoft.AspNetCore.Routing.RouteData routeData, ModelStateDictionary modelState ) : System.Collections.Generic

Initializes a new instance of the ResolvedRouteContext class.

ResolvedRouteContext ( string unresolvedError ) : System.Collections.Generic

Initializes a new instance of the ResolvedRouteContext class.

Method Details

ResolvedRouteContext() public method

Initializes a new instance of the ResolvedRouteContext class.
public ResolvedRouteContext ( TypeInfo controllerType, string controllerName, string action, object>.IDictionary routeValues, Microsoft.AspNetCore.Routing.RouteData routeData, ModelStateDictionary modelState ) : System.Collections.Generic
controllerType System.Reflection.TypeInfo Resolved controller type for the current route.
controllerName string Resolved controller name for the current route.
action string Resolved action name for the current route.
routeValues object>.IDictionary Resolved dictionary of the action arguments for the current route.
routeData Microsoft.AspNetCore.Routing.RouteData Resolved HttpMessageHandler for the current route.
modelState ModelStateDictionary Resolved model state validation for the current route.
return System.Collections.Generic

ResolvedRouteContext() public method

Initializes a new instance of the ResolvedRouteContext class.
public ResolvedRouteContext ( string unresolvedError ) : System.Collections.Generic
unresolvedError string Received error during the route resolving.
return System.Collections.Generic