2 writes to schedulerQueue
System.Workflow.Runtime (2)
System\Activities\Statements\InteropExecutor.cs (2)
927this.schedulerQueue = (Queue<SchedulableItem>)owner.RootActivity.GetValue(Scheduler.SchedulerQueueProperty); 930this.schedulerQueue = new Queue<SchedulableItem>();
5 references to schedulerQueue
System.Workflow.Runtime (5)
System\Activities\Statements\InteropExecutor.cs (5)
928if (this.schedulerQueue == null) 931owner.RootActivity.SetValue(Scheduler.SchedulerQueueProperty, this.schedulerQueue); 944Queue<SchedulableItem> queue = isInAtomicTransaction ? this.atomicActivityQueue : this.schedulerQueue; 968this.schedulerQueue.Count > 0) 970item = schedulerQueue.Dequeue();