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;
247
int foundIndex = (
_currentHistoryIndex
+ _historySize - distance) %
261
int n =
_currentHistoryIndex
;