1 instantiation of ListenActivity
System.Workflow.Activities (1)
Designers\ListenDesigner.cs (1)
33
CompositeActivity listenActivity = new
ListenActivity
();
19 references to ListenActivity
System.Workflow.Activities (18)
Designers\StateMachineWorkflowDesigner.cs (1)
107
if (typeof(
ListenActivity
).IsAssignableFrom(activityType))
EventDriven.cs (1)
66
if (!(eventDriven.Parent is
ListenActivity
) &&
Listen.cs (14)
29
[ToolboxBitmap(typeof(
ListenActivity
), "Resources.Listen.png")]
119
base.RemoveProperty(
ListenActivity
.IsListenTrigerredProperty);
120
base.RemoveProperty(
ListenActivity
.ActivityStateProperty);
136
ListenActivity
listen = executionContext.Activity as
ListenActivity
;
153
ListenActivity
listen = executionContext.Activity as
ListenActivity
;
191
static DependencyProperty IsListenTrigerredProperty = DependencyProperty.Register("IsListenTrigerred", typeof(bool), typeof(
ListenActivity
), new PropertyMetadata(false));
192
static DependencyProperty ActivityStateProperty = DependencyProperty.Register("ActivityState", typeof(List<ListenEventActivitySubscriber>), typeof(
ListenActivity
));
262
ListenActivity
parentActivity = context.Activity as
ListenActivity
;
295
ListenActivity
listen = obj as
ListenActivity
;
297
throw new ArgumentException(SR.GetString(SR.Error_UnexpectedArgumentType, typeof(
ListenActivity
).FullName), "obj");
SR.cs (1)
532
typeof(
ListenActivity
).Name,
WebServiceResponse.cs (1)
517
if (currentActivity.Parent is
ListenActivity
&& !Helpers.IsFrameworkActivity(currentActivity))
System.Workflow.Runtime (1)
System\Activities\Statements\Interop.cs (1)
1294
else if (interopBodyType == typeof(System.Workflow.Activities.
ListenActivity
))