1 write to CatchAlls
Microsoft.AspNetCore.Routing (1)
Tree\UrlMatchingTree.cs (1)
176current.CatchAlls = new UrlMatchingNode(length: i + 1) { IsCatchAll = true };
4 references to CatchAlls
Microsoft.AspNetCore.Routing (4)
Tree\TreeEnumerator.cs (2)
72if (next.CatchAlls != null) 74_stack.Push(next.CatchAlls);
Tree\UrlMatchingTree.cs (2)
174if (current.CatchAlls == null) 179current = current.CatchAlls;