1 write to CatchAlls
Microsoft.AspNetCore.Routing (1)
Tree\UrlMatchingTree.cs (1)
176current.CatchAlls = new UrlMatchingNode(length: i + 1) { IsCatchAll = true };
5 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;
Microsoft.AspNetCore.Routing.Tests (1)
Tree\TreeRouteBuilderTest.cs (1)
140var sixthSegment = fifthSegment.Value.CatchAlls;