1 type derived from EndpointSelector
Microsoft.AspNetCore.Routing (1)
Matching\DefaultEndpointSelector.cs (1)
9internal sealed class DefaultEndpointSelector : EndpointSelector
11 references to EndpointSelector
Microsoft.AspNetCore.Routing (11)
DependencyInjection\RoutingServiceCollectionExtensions.cs (1)
104services.TryAddSingleton<EndpointSelector, DefaultEndpointSelector>();
Matching\CandidateSet.cs (2)
15/// by the routing system. Used by implementations of <see cref="EndpointSelector"/> 28/// The constructor is provided to enable unit tests of implementations of <see cref="EndpointSelector"/>
Matching\CandidateState.cs (1)
43/// The score values are used in the <see cref="EndpointSelector"/> to determine
Matching\DfaMatcher.cs (2)
17private readonly EndpointSelector _selector; 22public DfaMatcher(ILogger<DfaMatcher> logger, EndpointSelector selector, DfaState[] states, int maxSegmentCount)
Matching\DfaMatcherBuilder.cs (2)
22private readonly EndpointSelector _selector; 39EndpointSelector selector,
Matching\EndpointSelector.cs (3)
10/// decision. To use a custom <see cref="EndpointSelector"/> register an implementation 11/// of <see cref="EndpointSelector"/> in the dependency injection container as a singleton. 22/// An <see cref="EndpointSelector"/> should assign the endpoint by calling