1 write to CatchAlls
Microsoft.AspNetCore.Components (1)
src\aspnetcore\src\Http\Routing\src\Tree\UrlMatchingTree.cs (1)
222current.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)
72if (next.CatchAlls != null) 74_stack.Push(next.CatchAlls);
src\aspnetcore\src\Http\Routing\src\Tree\UrlMatchingTree.cs (2)
220if (current.CatchAlls == null) 225current = current.CatchAlls;