2 writes to _timerQueue
System.Workflow.Runtime (2)
WorkflowExecutor.cs (2)
935
_timerQueue
= (TimerEventSubscriptionCollection)this.rootActivity.GetValue(TimerEventSubscriptionCollection.TimerCollectionProperty);
942
_timerQueue
= value;
4 references to _timerQueue
System.Workflow.Runtime (4)
WorkflowExecutor.cs (4)
933
if (
_timerQueue
== null)
936
Debug.Assert(
_timerQueue
!= null, "TimerEventSubscriptionCollection on root activity should never be null, but it was");
938
return
_timerQueue
;
943
this.rootActivity.SetValue(TimerEventSubscriptionCollection.TimerCollectionProperty,
_timerQueue
);