ReplicatorActivity.DynamicActivities Property

Definition

Gets an array of running child activity instances.

public:
 property System::Collections::Generic::ICollection<System::Workflow::ComponentModel::Activity ^> ^ DynamicActivities { System::Collections::Generic::ICollection<System::Workflow::ComponentModel::Activity ^> ^ get(); };
[System.ComponentModel.Browsable(false)]
public System.Collections.Generic.ICollection<System.Workflow.ComponentModel.Activity> DynamicActivities { get; }
[<System.ComponentModel.Browsable(false)>]
member this.DynamicActivities : System.Collections.Generic.ICollection<System.Workflow.ComponentModel.Activity>
Public ReadOnly Property DynamicActivities As ICollection(Of Activity)

Property Value

An array of currently running child activity instances.

Attributes

Remarks

The activity instances returned by this property are the instances of the activity type that are contained within the ReplicatorActivity. If the ReplicatorActivity is running in sequence mode, the array contains no more than one activity; if running in parallel mode the array contains all instances that are currently running.

Applies to

See also