17 references to TimerEventSubscriptionCollection
System.Workflow.Runtime (17)
Hosting\SqlWorkflowPersistenceService.cs (3)
1000TimerEventSubscriptionCollection timers = (TimerEventSubscriptionCollection)rootActivity.GetValue(TimerEventSubscriptionCollection.TimerCollectionProperty);
System\Activities\Statements\InteropExecutor.cs (5)
53TimerEventSubscriptionCollection timerQueue; 152TimerEventSubscriptionCollection TimerQueue 158this.timerQueue = (TimerEventSubscriptionCollection)this.rootActivity.GetValue(TimerEventSubscriptionCollection.TimerCollectionProperty); 166this.rootActivity.SetValue(TimerEventSubscriptionCollection.TimerCollectionProperty, this.timerQueue);
TimerEventSubscriptionCollection.cs (2)
18public readonly static DependencyProperty TimerCollectionProperty = DependencyProperty.RegisterAttached("TimerCollection", typeof(TimerEventSubscriptionCollection), typeof(TimerEventSubscriptionCollection));
WorkflowExecutor.cs (7)
81private TimerEventSubscriptionCollection _timerQueue; 676TimerEventSubscriptionCollection queue = TimerQueue; 929internal TimerEventSubscriptionCollection TimerQueue 935_timerQueue = (TimerEventSubscriptionCollection)this.rootActivity.GetValue(TimerEventSubscriptionCollection.TimerCollectionProperty); 943this.rootActivity.SetValue(TimerEventSubscriptionCollection.TimerCollectionProperty, _timerQueue); 1371TimerEventSubscriptionCollection timers = TimerQueue;