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

Contains information about a resolved route from the ASP.NET Web API internal pipeline.
Afficher le fichier Open project: ivaylokenov/MyTested.AspNetCore.Mvc

Méthodes publiques

Méthode 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 méthode

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.
Résultat System.Collections.Generic

ResolvedRouteContext() public méthode

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