8 instantiations of PolicyNodeEdge
Microsoft.AspNetCore.Routing (4)
Matching\AcceptsMatcherPolicy.cs (1)
243result[index] = new PolicyNodeEdge(kvp.Key, kvp.Value);
Matching\HostMatcherPolicy.cs (1)
266result[index] = new PolicyNodeEdge(kvp.Key, kvp.Value);
Matching\HttpMethodMatcherPolicy.cs (1)
293policyNodeEdges[index++] = new PolicyNodeEdge(kvp.Key, kvp.Value);
Matching\NegotiationMatcherPolicy.cs (1)
286result[index] = new PolicyNodeEdge(
Microsoft.AspNetCore.Routing.Tests (4)
Matching\DfaMatcherBuilderTest.cs (4)
3606.Select(g => new PolicyNodeEdge(g.Key, g.ToArray())) 3648.Select(g => new PolicyNodeEdge(g.Key, g.ToArray())) 3673.Select(g => new PolicyNodeEdge(g.Key, g.ToArray())) 3677edges.Add(new PolicyNodeEdge(int.MaxValue, new[] { maxValueEndpoint }));
16 references to PolicyNodeEdge
Microsoft.AspNetCore.Routing (11)
Matching\AcceptsMatcherPolicy.cs (2)
138public IReadOnlyList<PolicyNodeEdge> GetEdges(IReadOnlyList<Endpoint> endpoints) 239var result = new PolicyNodeEdge[edges.Count];
Matching\DfaMatcherBuilder.cs (1)
924var edge = edges[k];
Matching\HostMatcherPolicy.cs (2)
186public IReadOnlyList<PolicyNodeEdge> GetEdges(IReadOnlyList<Endpoint> endpoints) 262var result = new PolicyNodeEdge[edges.Count];
Matching\HttpMethodMatcherPolicy.cs (2)
164public IReadOnlyList<PolicyNodeEdge> GetEdges(IReadOnlyList<Endpoint> endpoints) 289var policyNodeEdges = new PolicyNodeEdge[edges.Count];
Matching\INodeBuilderPolicy.cs (1)
25IReadOnlyList<PolicyNodeEdge> GetEdges(IReadOnlyList<Endpoint> endpoints);
Matching\NegotiationMatcherPolicy.cs (2)
221public IReadOnlyList<PolicyNodeEdge> GetEdges(IReadOnlyList<Endpoint> endpoints) 282var result = new PolicyNodeEdge[edges.Count];
Matching\PolicyNodeEdge.cs (1)
14/// Constructs a new <see cref="PolicyNodeEdge"/> instance.
Microsoft.AspNetCore.Routing.Microbenchmarks (2)
Matching\MatcherBuilderMultipleEntryBenchmark.cs (2)
121public IReadOnlyList<PolicyNodeEdge> GetEdges(IReadOnlyList<Endpoint> endpoints) 143public IReadOnlyList<PolicyNodeEdge> GetEdges(IReadOnlyList<Endpoint> endpoints)
Microsoft.AspNetCore.Routing.Tests (3)
Matching\DfaMatcherBuilderTest.cs (3)
3601public IReadOnlyList<PolicyNodeEdge> GetEdges(IReadOnlyList<Endpoint> endpoints) 3643public IReadOnlyList<PolicyNodeEdge> GetEdges(IReadOnlyList<Endpoint> endpoints) 3669public IReadOnlyList<PolicyNodeEdge> GetEdges(IReadOnlyList<Endpoint> endpoints)