1 write to _historySize
System.Web.Mobile (1)
UI\MobileControls\SessionViewState.cs (1)
192
_historySize
= ControlsConfig.GetFromContext(context).SessionStateHistorySize;
7 references to _historySize
System.Web.Mobile (7)
UI\MobileControls\SessionViewState.cs (7)
193
if (
_historySize
< 1)
199
_history = new SessionViewStateHistoryItem[
_historySize
];
208
_currentHistoryIndex = (_currentHistoryIndex + 1) %
_historySize
;
209
if (_historyUsed <
_historySize
)
247
int foundIndex = (_currentHistoryIndex +
_historySize
- distance) %
248
_historySize
;
250
_currentHistoryIndex = (foundIndex + 1) %
_historySize
;