17 references to DelayActivity
System.Workflow.Activities (16)
Delay.cs (15)
24[ToolboxBitmap(typeof(DelayActivity), "Resources.Delay.png")] 32public static readonly DependencyProperty InitializeTimeoutDurationEvent = DependencyProperty.Register("InitializeTimeoutDuration", typeof(EventHandler), typeof(DelayActivity)); 33public static readonly DependencyProperty TimeoutDurationProperty = DependencyProperty.Register("TimeoutDuration", typeof(TimeSpan), typeof(DelayActivity), new PropertyMetadata(new TimeSpan(0, 0, 0))); 36private static readonly DependencyProperty QueueNameProperty = DependencyProperty.Register("QueueName", typeof(IComparable), typeof(DelayActivity)); 145base.RemoveProperty(DelayActivity.SubscriptionIDProperty); 146base.RemoveProperty(DelayActivity.IsInEventActivityModeProperty); 155DelayActivity delay = obj as DelayActivity; 172static DependencyProperty SubscriptionIDProperty = DependencyProperty.Register("SubscriptionID", typeof(Guid), typeof(DelayActivity), new PropertyMetadata(Guid.NewGuid())); 173static DependencyProperty IsInEventActivityModeProperty = DependencyProperty.Register("IsInEventActivityMode", typeof(bool), typeof(DelayActivity), new PropertyMetadata(false)); 179return (Guid)base.GetValue(DelayActivity.SubscriptionIDProperty); 183base.SetValue(DelayActivity.SubscriptionIDProperty, value); 190return (bool)base.GetValue(DelayActivity.IsInEventActivityModeProperty); 194base.SetValue(DelayActivity.IsInEventActivityModeProperty, value); 307base.RaiseEvent(DelayActivity.InitializeTimeoutDurationEvent, this, EventArgs.Empty);
SR.cs (1)
546typeof(DelayActivity).Name);
System.Workflow.Runtime (1)
System\Activities\Statements\Interop.cs (1)
1226else if (interopBodyType == typeof(System.Workflow.Activities.DelayActivity))