3 instantiations of OutboundMatchResult
Microsoft.AspNetCore.Routing (3)
RouteValuesAddressScheme.cs (1)
137
matchResults.Add(new
OutboundMatchResult
(outboundMatch, isFallbackMatch: false));
Tree\LinkGenerationDecisionTree.cs (2)
121
results.Add(new
OutboundMatchResult
(matches[i], isFallbackPath));
166
results.Add(new
OutboundMatchResult
(_conventionalEntries[i], isFallbackMatch: false));
13 references to OutboundMatchResult
Microsoft.AspNetCore.Routing (13)
RouteValuesAddressScheme.cs (6)
29
IList<
OutboundMatchResult
>? matchResults = null;
62
private static IEnumerable<Endpoint> GetEndpoints(IList<
OutboundMatchResult
> matchResults, int matchCount)
73
var namedOutboundMatchResults = new Dictionary<string, List<
OutboundMatchResult
>>(StringComparer.OrdinalIgnoreCase);
134
matchResults = new List<
OutboundMatchResult
>();
175
public readonly FrozenDictionary<string, List<
OutboundMatchResult
>> NamedMatches;
180
FrozenDictionary<string, List<
OutboundMatchResult
>> namedMatches)
Tree\LinkGenerationDecisionTree.cs (7)
67
public IList<
OutboundMatchResult
> GetMatches(RouteValueDictionary values, RouteValueDictionary ambientValues)
72
var results = new List<
OutboundMatchResult
>();
108
List<
OutboundMatchResult
> results,
162
private void ProcessConventionalEntries(List<
OutboundMatchResult
> results)
186
private sealed class OutboundMatchResultComparer : IComparer<
OutboundMatchResult
>
190
public int Compare(
OutboundMatchResult
x,
OutboundMatchResult
y)