2 writes to _currentHistoryIndex
System.Web.Mobile (2)
UI\MobileControls\SessionViewState.cs (2)
208_currentHistoryIndex = (_currentHistoryIndex + 1) % _historySize; 250_currentHistoryIndex = (foundIndex + 1) % _historySize;
4 references to _currentHistoryIndex
System.Web.Mobile (4)
UI\MobileControls\SessionViewState.cs (4)
207_history[_currentHistoryIndex] = item; 208_currentHistoryIndex = (_currentHistoryIndex + 1) % _historySize; 247int foundIndex = (_currentHistoryIndex + _historySize - distance) % 261int n = _currentHistoryIndex;