2 writes to _nextIndex
Microsoft.AspNetCore.Razor.Runtime (2)
Runtime\TagHelpers\TagHelperScopeManager.cs (2)
147
_nextIndex
++;
152
public void ReturnCurrent() =>
_nextIndex
--;
4 references to _nextIndex
Microsoft.AspNetCore.Razor.Runtime (4)
Runtime\TagHelpers\TagHelperScopeManager.cs (4)
117
public TagHelperExecutionContext Current =>
_nextIndex
> 0 ? _executionContexts[
_nextIndex
- 1] : null;
128
if (
_nextIndex
== _executionContexts.Count)
143
tagHelperExecutionContext = _executionContexts[
_nextIndex
];