1 write to _stack
Microsoft.AspNetCore.Components (1)
src\Http\Routing\src\Tree\TreeEnumerator.cs (1)
18
_stack
= new Stack<UrlMatchingNode>();
10 references to _stack
Microsoft.AspNetCore.Components (10)
src\Http\Routing\src\Tree\TreeEnumerator.cs (10)
22
_stack
.Push(root);
35
if (
_stack
== null)
40
while (
_stack
.Count > 0)
42
var next =
_stack
.Pop();
74
_stack
.Push(next.CatchAlls);
79
_stack
.Push(next.ConstrainedCatchAlls);
84
_stack
.Push(next.Parameters);
89
_stack
.Push(next.ConstrainedParameters);
97
_stack
.Push(node);
107
_stack
.Clear();