1 write to InboundPrecedence
Microsoft.AspNetCore.Routing (1)
Patterns\RoutePattern.cs (1)
61InboundPrecedence = RoutePrecedence.ComputeInbound(this);
8 references to InboundPrecedence
Microsoft.AspNetCore.Routing (2)
Matching\EndpointComparer.cs (2)
146return routeEndpointX.RoutePattern.InboundPrecedence 147.CompareTo(routeEndpointY.RoutePattern.InboundPrecedence);
Microsoft.AspNetCore.Routing.Microbenchmarks (2)
src\Http\Routing\test\UnitTests\Matching\RouteMatcherBuilder.cs (1)
35.GroupBy(e => (e.Order, e.RoutePattern.InboundPrecedence, e.RoutePattern.RawText))
src\Http\Routing\test\UnitTests\Matching\TreeRouterMatcherBuilder.cs (1)
42.GroupBy(e => (e.Order, e.RoutePattern.InboundPrecedence, e.RoutePattern.RawText))
Microsoft.AspNetCore.Routing.Tests (4)
Matching\RouteMatcherBuilder.cs (1)
35.GroupBy(e => (e.Order, e.RoutePattern.InboundPrecedence, e.RoutePattern.RawText))
Matching\TreeRouterMatcherBuilder.cs (1)
42.GroupBy(e => (e.Order, e.RoutePattern.InboundPrecedence, e.RoutePattern.RawText))
Template\RoutePatternPrecedenceTests.cs (2)
30"{controller}").InboundPrecedence; 36requiredValues: new { controller = "Home" }).InboundPrecedence;