2 writes to _timeoutTimer
System.Web (2)
UI\LegacyPageAsyncTaskManager.cs (2)
364
_timeoutTimer
= new Timer(new TimerCallback(this.TimeoutTimerCallback), null, (int)timerPeriod, -1);
369
if (timer != null && Interlocked.CompareExchange(ref
_timeoutTimer
, null, timer) == timer) {
2 references to _timeoutTimer
System.Web (2)
UI\LegacyPageAsyncTaskManager.cs (2)
344
if (
_timeoutTimer
!= null) {
368
Timer timer =
_timeoutTimer
;