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