4 instantiations of PolicyNodeEdge
Microsoft.AspNetCore.Routing (4)
Matching\AcceptsMatcherPolicy.cs (1)
243result[index] = new PolicyNodeEdge(kvp.Key, kvp.Value);
Matching\HostMatcherPolicy.cs (1)
271result[index] = new PolicyNodeEdge(kvp.Key, kvp.Value);
Matching\HttpMethodMatcherPolicy.cs (1)
293policyNodeEdges[index++] = new PolicyNodeEdge(kvp.Key, kvp.Value);
Matching\NegotiationMatcherPolicy.cs (1)
315result[index] = new PolicyNodeEdge(
11 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)
191public IReadOnlyList<PolicyNodeEdge> GetEdges(IReadOnlyList<Endpoint> endpoints) 267var 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)
250public IReadOnlyList<PolicyNodeEdge> GetEdges(IReadOnlyList<Endpoint> endpoints) 311var result = new PolicyNodeEdge[edges.Count];
Matching\PolicyNodeEdge.cs (1)
14/// Constructs a new <see cref="PolicyNodeEdge"/> instance.