9 implementations of AppliesToEndpoints
Microsoft.AspNetCore.Routing (4)
Matching\AcceptsMatcherPolicy.cs (1)
22bool INodeBuilderPolicy.AppliesToEndpoints(IReadOnlyList<Endpoint> endpoints)
Matching\HostMatcherPolicy.cs (1)
26bool INodeBuilderPolicy.AppliesToEndpoints(IReadOnlyList<Endpoint> endpoints)
Matching\HttpMethodMatcherPolicy.cs (1)
39bool INodeBuilderPolicy.AppliesToEndpoints(IReadOnlyList<Endpoint> endpoints)
Matching\NegotiationMatcherPolicy.cs (1)
23bool INodeBuilderPolicy.AppliesToEndpoints(IReadOnlyList<Endpoint> endpoints) =>
Microsoft.AspNetCore.Routing.Microbenchmarks (2)
Matching\MatcherBuilderMultipleEntryBenchmark.cs (2)
111public bool AppliesToEndpoints(IReadOnlyList<Endpoint> endpoints) 133public bool AppliesToEndpoints(IReadOnlyList<Endpoint> endpoints)
Microsoft.AspNetCore.Routing.Tests (3)
Matching\DfaMatcherBuilderTest.cs (3)
3591public bool AppliesToEndpoints(IReadOnlyList<Endpoint> endpoints) 3633public bool AppliesToEndpoints(IReadOnlyList<Endpoint> endpoints) 3659public bool AppliesToEndpoints(IReadOnlyList<Endpoint> endpoints)
14 references to AppliesToEndpoints
Microsoft.AspNetCore.Routing (1)
Matching\DfaMatcherBuilder.cs (1)
911if (!nodeBuilder.AppliesToEndpoints(parent.Matches ?? (IReadOnlyList<Endpoint>)Array.Empty<Endpoint>()))
Microsoft.AspNetCore.Routing.Tests (13)
Matching\AcceptsMatcherPolicyTest.cs (4)
23var result = policy.AppliesToEndpoints(endpoints); 41var result = policy.AppliesToEndpoints(endpoints); 60var result = policy.AppliesToEndpoints(endpoints); 79var result = policy.AppliesToEndpoints(endpoints);
Matching\HostMatcherPolicyTest.cs (5)
20var result = policy.AppliesToEndpoints(endpoints); 38var result = policy.AppliesToEndpoints(endpoints); 57var result = policy.AppliesToEndpoints(endpoints); 76var result = policy.AppliesToEndpoints(endpoints); 99policy.AppliesToEndpoints(endpoints);
Matching\HttpMethodMatcherPolicyTest.cs (4)
21var result = policy.AppliesToEndpoints(endpoints); 39var result = policy.AppliesToEndpoints(endpoints); 58var result = policy.AppliesToEndpoints(endpoints); 77var result = policy.AppliesToEndpoints(endpoints);