ReplicatorActivity.DynamicActivities Propriedade
Definição
Obtém uma matriz de instâncias de atividade filho em execução.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)
Valor da propriedade
Uma matriz de instâncias de atividade filho em execução no momento.An array of currently running child activity instances.
- Atributos
Comentários
As instâncias de atividade retornadas por essa propriedade são as instâncias do tipo de atividade contidas no ReplicatorActivity .The activity instances returned by this property are the instances of the activity type that are contained within the ReplicatorActivity. Se o ReplicatorActivity estiver sendo executado no modo de sequência, a matriz não conterá mais de uma atividade; se estiver sendo executada em modo paralelo, a matriz conterá todas as instâncias que estão em execução no momento.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.