2 writes to Entry
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 });
5 references to Entry
Microsoft.AspNetCore.Components (5)
src\aspnetcore\src\Http\Routing\src\Tree\TreeRouter.cs (1)
240var entry = item.Entry;
src\aspnetcore\src\Http\Routing\src\Tree\UrlMatchingTree.cs (4)
237var result = x.Entry.Precedence.CompareTo(y.Entry.Precedence); 241return result == 0 ? string.Compare(x.Entry.RoutePattern.RawText, y.Entry.RoutePattern.RawText, StringComparison.Ordinal) : result;