1 implementation of SelectBestCandidate
Microsoft.AspNetCore.Mvc.Core (1)
Infrastructure\ActionSelector.cs (1)
79public ActionDescriptor? SelectBestCandidate(RouteContext context, IReadOnlyList<ActionDescriptor> candidates)
3 references to SelectBestCandidate
Microsoft.AspNetCore.Mvc.Core (2)
Routing\MvcAttributeRouteHandler.cs (1)
54var actionDescriptor = _actionSelector.SelectBestCandidate(context, Actions);
Routing\MvcRouteHandler.cs (1)
50var actionDescriptor = _actionSelector.SelectBestCandidate(context, candidates);
Microsoft.AspNetCore.Mvc.Core.Test (1)
Routing\MvcRouteHandlerTests.cs (1)
70.Setup(a => a.SelectBestCandidate(It.IsAny<RouteContext>(), It.IsAny<IReadOnlyList<ActionDescriptor>>()))