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