2 writes to Entry
Microsoft.AspNetCore.Components (2)
src\aspnetcore\src\Http\Routing\src\Tree\UrlMatchingTree.cs (2)
135
current.Matches.Add(new InboundMatch() {
Entry
= entry, TemplateMatcher = matcher });
234
current.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)
240
var entry = item.
Entry
;
src\aspnetcore\src\Http\Routing\src\Tree\UrlMatchingTree.cs (4)
237
var result = x.
Entry
.Precedence.CompareTo(y.
Entry
.Precedence);
241
return result == 0 ? string.Compare(x.
Entry
.RoutePattern.RawText, y.
Entry
.RoutePattern.RawText, StringComparison.Ordinal) : result;