1 write to Matches
Microsoft.AspNetCore.Components (1)
src\aspnetcore\src\Http\Routing\src\Tree\UrlMatchingNode.cs (1)
30
Matches
= new List<InboundMatch>();
7 references to Matches
Microsoft.AspNetCore.Components (7)
src\aspnetcore\src\Http\Routing\src\Tree\TreeEnumerator.cs (2)
48
if (next.IsCatchAll && next.
Matches
.Count > 0)
58
if (next.
Matches
.Count > 0)
src\aspnetcore\src\Http\Routing\src\Tree\TreeRouter.cs (1)
238
foreach (var item in node.
Matches
)
src\aspnetcore\src\Http\Routing\src\Tree\UrlMatchingNode.cs (1)
86
return $"Length: {Depth}, Matches: {string.Join(" | ",
Matches
?.Select(m => $"({m.TemplateMatcher.RoutePattern.RawText})"))}";
src\aspnetcore\src\Http\Routing\src\Tree\UrlMatchingTree.cs (3)
135
current.
Matches
.Add(new InboundMatch() { Entry = entry, TemplateMatcher = matcher });
234
current.
Matches
.Add(new InboundMatch() { Entry = entry, TemplateMatcher = matcher });
235
current.
Matches
.Sort((x, y) =>