1 write to CatchAlls
Microsoft.AspNetCore.Components (1)
src\aspnetcore\src\Http\Routing\src\Tree\UrlMatchingTree.cs (1)
222
current.
CatchAlls
= new UrlMatchingNode(length: i + 1) { IsCatchAll = true };
4 references to CatchAlls
Microsoft.AspNetCore.Components (4)
src\aspnetcore\src\Http\Routing\src\Tree\TreeEnumerator.cs (2)
72
if (next.
CatchAlls
!= null)
74
_stack.Push(next.
CatchAlls
);
src\aspnetcore\src\Http\Routing\src\Tree\UrlMatchingTree.cs (2)
220
if (current.
CatchAlls
== null)
225
current = current.
CatchAlls
;