The DataReplicator activity is used in every workflow that requires some sequence of activities to be performed on multiple files or the data attribute of an object.
It is essentially a ‘for each’ statement.
It executes the ‘child’ activities for each object being processed.
DataReplicator has an input parameter which is the list of files to process which it gets from another activity, such as the Upload activity.
<DataReplicator
x:Name="Replicator"
Data='{wf:ActivityBind form, Path=Data}'>
See also