4 instantiations of PolicyNodeEdge
Microsoft.AspNetCore.Routing (4)
Matching\AcceptsMatcherPolicy.cs (1)
243
result[index] = new
PolicyNodeEdge
(kvp.Key, kvp.Value);
Matching\HostMatcherPolicy.cs (1)
271
result[index] = new
PolicyNodeEdge
(kvp.Key, kvp.Value);
Matching\HttpMethodMatcherPolicy.cs (1)
293
policyNodeEdges[index++] = new
PolicyNodeEdge
(kvp.Key, kvp.Value);
Matching\NegotiationMatcherPolicy.cs (1)
315
result[index] = new
PolicyNodeEdge
(
11 references to PolicyNodeEdge
Microsoft.AspNetCore.Routing (11)
Matching\AcceptsMatcherPolicy.cs (2)
138
public IReadOnlyList<
PolicyNodeEdge
> GetEdges(IReadOnlyList<Endpoint> endpoints)
239
var result = new
PolicyNodeEdge
[edges.Count];
Matching\DfaMatcherBuilder.cs (1)
924
var
edge = edges[k];
Matching\HostMatcherPolicy.cs (2)
191
public IReadOnlyList<
PolicyNodeEdge
> GetEdges(IReadOnlyList<Endpoint> endpoints)
267
var result = new
PolicyNodeEdge
[edges.Count];
Matching\HttpMethodMatcherPolicy.cs (2)
164
public IReadOnlyList<
PolicyNodeEdge
> GetEdges(IReadOnlyList<Endpoint> endpoints)
289
var policyNodeEdges = new
PolicyNodeEdge
[edges.Count];
Matching\INodeBuilderPolicy.cs (1)
25
IReadOnlyList<
PolicyNodeEdge
> GetEdges(IReadOnlyList<Endpoint> endpoints);
Matching\NegotiationMatcherPolicy.cs (2)
250
public IReadOnlyList<
PolicyNodeEdge
> GetEdges(IReadOnlyList<Endpoint> endpoints)
311
var result = new
PolicyNodeEdge
[edges.Count];
Matching\PolicyNodeEdge.cs (1)
14
/// Constructs a new <see cref="
PolicyNodeEdge
"/> instance.