2 writes to _historyStack
System.Web (2)
UI\WebControls\Wizard.cs (2)
1175
_historyStack
= new Stack<int>();
1650
_historyStack
= new Stack<int>(collection.Cast<int>());
20 references to _historyStack
System.Web (20)
UI\WebControls\Wizard.cs (20)
1174
if (
_historyStack
== null)
1177
return
_historyStack
;
1549
if (
_historyStack
== null ||
_historyStack
.Count == 0) {
1554
previousIndex =
_historyStack
.Pop();
1557
if (previousIndex == index &&
_historyStack
.Count > 0) {
1558
previousIndex =
_historyStack
.Pop();
1561
previousIndex =
_historyStack
.Peek();
1564
if (previousIndex == index &&
_historyStack
.Count > 1) {
1565
int originalIndex =
_historyStack
.Pop();
1566
previousIndex =
_historyStack
.Peek();
1567
_historyStack
.Push(originalIndex);
1847
if (
_historyStack
!= null &&
_historyStack
.Contains(index)) {
1963
if (
_historyStack
== null ||
_historyStack
.Count == 0 ||
1964
_historyStack
.Peek() != activeStepIndex) {
1971
bool containsHistory =
_historyStack
!= null &&
_historyStack
.Count > 0;
1974
object array = containsHistory ?
_historyStack
.ToArray() : null;