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