ForEachActivity Constructors
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.
Overloads
ForEachActivity() |
Initializes a new instance of the ForEachActivity class. |
ForEachActivity(String, Expression, IList<Activity>, IDictionary<String, Object>, String, IList<ActivityDependency>, IList<UserProperty>, Nullable<Boolean>, Nullable<Int32>) |
Initializes a new instance of the ForEachActivity class. |
ForEachActivity()
Initializes a new instance of the ForEachActivity class.
public ForEachActivity ();
Public Sub New ()
Applies to
ForEachActivity(String, Expression, IList<Activity>, IDictionary<String, Object>, String, IList<ActivityDependency>, IList<UserProperty>, Nullable<Boolean>, Nullable<Int32>)
Initializes a new instance of the ForEachActivity class.
public ForEachActivity (string name, Microsoft.Azure.Management.DataFactory.Models.Expression items, System.Collections.Generic.IList<Microsoft.Azure.Management.DataFactory.Models.Activity> activities, System.Collections.Generic.IDictionary<string,object> additionalProperties = default, string description = default, System.Collections.Generic.IList<Microsoft.Azure.Management.DataFactory.Models.ActivityDependency> dependsOn = default, System.Collections.Generic.IList<Microsoft.Azure.Management.DataFactory.Models.UserProperty> userProperties = default, bool? isSequential = default, int? batchCount = default);
new Microsoft.Azure.Management.DataFactory.Models.ForEachActivity : string * Microsoft.Azure.Management.DataFactory.Models.Expression * System.Collections.Generic.IList<Microsoft.Azure.Management.DataFactory.Models.Activity> * System.Collections.Generic.IDictionary<string, obj> * string * System.Collections.Generic.IList<Microsoft.Azure.Management.DataFactory.Models.ActivityDependency> * System.Collections.Generic.IList<Microsoft.Azure.Management.DataFactory.Models.UserProperty> * Nullable<bool> * Nullable<int> -> Microsoft.Azure.Management.DataFactory.Models.ForEachActivity
Public Sub New (name As String, items As Expression, activities As IList(Of Activity), Optional additionalProperties As IDictionary(Of String, Object) = Nothing, Optional description As String = Nothing, Optional dependsOn As IList(Of ActivityDependency) = Nothing, Optional userProperties As IList(Of UserProperty) = Nothing, Optional isSequential As Nullable(Of Boolean) = Nothing, Optional batchCount As Nullable(Of Integer) = Nothing)
Parameters
- name
- String
Activity name.
- items
- Expression
Collection to iterate.
- additionalProperties
- IDictionary<String,Object>
Unmatched properties from the message are deserialized this collection
- description
- String
Activity description.
- dependsOn
- IList<ActivityDependency>
Activity depends on condition.
- userProperties
- IList<UserProperty>
Activity user properties.
Batch count to be used for controlling the number of parallel execution (when isSequential is set to false).
Applies to
Azure SDK for .NET