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)
1174if (_historyStack == null) 1177return _historyStack; 1549if (_historyStack == null || _historyStack.Count == 0) { 1554previousIndex = _historyStack.Pop(); 1557if (previousIndex == index && _historyStack.Count > 0) { 1558previousIndex = _historyStack.Pop(); 1561previousIndex = _historyStack.Peek(); 1564if (previousIndex == index && _historyStack.Count > 1) { 1565int originalIndex = _historyStack.Pop(); 1566previousIndex = _historyStack.Peek(); 1567_historyStack.Push(originalIndex); 1847if (_historyStack != null && _historyStack.Contains(index)) { 1963if (_historyStack == null || _historyStack.Count == 0 || 1964_historyStack.Peek() != activeStepIndex) { 1971bool containsHistory = _historyStack != null && _historyStack.Count > 0; 1974object array = containsHistory ? _historyStack.ToArray() : null;