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