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