2 instantiations of ReplicatorChildEventArgs
System.Workflow.Activities (2)
Task.cs (2)
535
base.RaiseGenericEvent(ReplicatorActivity.ChildInitializedEvent, this, new
ReplicatorChildEventArgs
(childStateInfo.InstanceData, templateExecutionContext.Activity));
571
base.RaiseGenericEvent(ReplicatorActivity.ChildCompletedEvent, this, new
ReplicatorChildEventArgs
(childStateInfo.InstanceData, e.Activity));
4 references to ReplicatorChildEventArgs
System.Workflow.Activities (4)
Task.cs (4)
44
public static readonly DependencyProperty ChildInitializedEvent = DependencyProperty.Register("ChildInitialized", typeof(EventHandler<
ReplicatorChildEventArgs
>), typeof(ReplicatorActivity));
45
public static readonly DependencyProperty ChildCompletedEvent = DependencyProperty.Register("ChildCompleted", typeof(EventHandler<
ReplicatorChildEventArgs
>), typeof(ReplicatorActivity));
198
public event EventHandler<
ReplicatorChildEventArgs
> ChildInitialized
213
public event EventHandler<
ReplicatorChildEventArgs
> ChildCompleted