2 instantiations of InboundMatch
Microsoft.AspNetCore.Components (2)
src\aspnetcore\src\Http\Routing\src\Tree\UrlMatchingTree.cs (2)
135current.Matches.Add(new InboundMatch() { Entry = entry, TemplateMatcher = matcher }); 234current.Matches.Add(new InboundMatch() { Entry = entry, TemplateMatcher = matcher });
3 references to InboundMatch
Microsoft.AspNetCore.Components (3)
src\aspnetcore\src\Http\Routing\src\Tree\TreeRouter.cs (1)
238foreach (var item in node.Matches)
src\aspnetcore\src\Http\Routing\src\Tree\UrlMatchingNode.cs (2)
30Matches = new List<InboundMatch>(); 50public List<InboundMatch> Matches { get; }