ReplicatorActivity.ChildInitialized Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Occurs immediately after a child activity is initialized.
public:
event EventHandler<System::Workflow::Activities::ReplicatorChildEventArgs ^> ^ ChildInitialized;
public event EventHandler<System.Workflow.Activities.ReplicatorChildEventArgs> ChildInitialized;
member this.ChildInitialized : EventHandler<System.Workflow.Activities.ReplicatorChildEventArgs>
Public Custom Event ChildInitialized As EventHandler(Of ReplicatorChildEventArgs)
Event Type
Remarks
If subscribed to, this event is raised every time that an instance of the child activity is created for an item in the Children
collection. The Children
collection is set through the ReplicatorChildEventArgs of the Initialized event handler. The child Activity instance is passed in the call so that the ReplicatorActivity can set values on the child. The relevant InstanceData object from the Children
collection is also passed.