2 writes to _lastScheduledTask
System.Web (2)
Util\SynchronizationHelper.cs (2)
86_lastScheduledTask = tcs.Task; // future work can be scheduled off this Task 109_lastScheduledTask = newTask; // the newly-created task is now the last one
2 references to _lastScheduledTask
System.Web (2)
Util\SynchronizationHelper.cs (2)
85lastTask = _lastScheduledTask; 108Task newTask = _lastScheduledTask.ContinueWith(_ => SafeWrapCallback(action), TaskScheduler.Default);