1 write to ConstrainedCatchAlls
Microsoft.AspNetCore.Components (1)
src\aspnetcore\src\Http\Routing\src\Tree\UrlMatchingTree.cs (1)
211
current.
ConstrainedCatchAlls
= new UrlMatchingNode(length: i + 1) { IsCatchAll = true };
4 references to ConstrainedCatchAlls
Microsoft.AspNetCore.Components (4)
src\aspnetcore\src\Http\Routing\src\Tree\TreeEnumerator.cs (2)
77
if (next.
ConstrainedCatchAlls
!= null)
79
_stack.Push(next.
ConstrainedCatchAlls
);
src\aspnetcore\src\Http\Routing\src\Tree\UrlMatchingTree.cs (2)
209
if (current.
ConstrainedCatchAlls
== null)
214
current = current.
ConstrainedCatchAlls
;