4 overrides of CreateMatcher
Microsoft.AspNetCore.Routing (1)
Matching\DfaMatcherFactory.cs (1)
21public override Matcher CreateMatcher(EndpointDataSource dataSource)
Microsoft.AspNetCore.Routing.Microbenchmarks (1)
EndpointRoutingShortCircuitBenchmark.cs (1)
76public override Matcher CreateMatcher(EndpointDataSource dataSource)
Microsoft.AspNetCore.Routing.Tests (2)
TestObjects\TestMatcherFactory.cs (2)
23public override Matcher CreateMatcher(EndpointDataSource dataSource) 42public override Matcher CreateMatcher(EndpointDataSource dataSource)
6 references to CreateMatcher
Microsoft.AspNetCore.Routing (1)
EndpointRoutingMiddleware.cs (1)
264var matcher = _matcherFactory.CreateMatcher(_endpointDataSource);
Microsoft.AspNetCore.Routing.Tests (5)
Builder\EndpointRoutingApplicationBuilderExtensionsTest.cs (2)
178.Setup(m => m.CreateMatcher(It.IsAny<EndpointDataSource>())) 239.Setup(m => m.CreateMatcher(It.IsAny<EndpointDataSource>()))
EndpointRoutingMiddlewareTest.cs (2)
145.Setup(f => f.CreateMatcher(It.IsAny<EndpointDataSource>())) 157.Verify(f => f.CreateMatcher(It.IsAny<EndpointDataSource>()), Times.Exactly(2));
Matching\DfaMatcherTest.cs (1)
58return Assert.IsType<DataSourceDependentMatcher>(factory.CreateMatcher(dataSource));