1 write to _executionContexts
Microsoft.AspNetCore.Razor.Runtime (1)
Runtime\TagHelpers\TagHelperScopeManager.cs (1)
112
_executionContexts
= new List<TagHelperExecutionContext>();
4 references to _executionContexts
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)
139
_executionContexts
.Add(tagHelperExecutionContext);
143
tagHelperExecutionContext =
_executionContexts
[_nextIndex];