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)
85
lastTask =
_lastScheduledTask
;
108
Task newTask =
_lastScheduledTask
.ContinueWith(_ => SafeWrapCallback(action), TaskScheduler.Default);