AttributeRouteMatchingEntry Class¶
Summary¶
Used to build an [Microsoft.AspNet.Mvc.Routing.InnerAttributeRoute](Microsoft.AspNet.Mvc.Routing.InnerAttributeRoute.yml). Represents an individual URL-matching route that will be aggregated into the [Microsoft.AspNet.Mvc.Routing.InnerAttributeRoute](Microsoft.AspNet.Mvc.Routing.InnerAttributeRoute.yml).
Properties¶
-
Constraints
()¶ Return type: System.Collections.Generic.IReadOnlyDictionary{System.String,IRouteConstraint} public IReadOnlyDictionary<string, IRouteConstraint> Constraints { get; set; }
-
Order
()¶ The order of the template.
Return type: System.Int32 public int Order { get; set; }
-
Precedence
()¶ The precedence of the template.
Return type: System.Decimal public decimal Precedence { get; set; }
-
RouteName
()¶ Return type: System.String public string RouteName { get; set; }
-
RouteTemplate
()¶ Return type: System.String public string RouteTemplate { get; set; }
-
Target
()¶ Return type: IRouter public IRouter Target { get; set; }
-
TemplateMatcher
()¶ Return type: TemplateMatcher public TemplateMatcher TemplateMatcher { get; set; }
-