ForEachActivity Konstruktoren
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Überlädt
ForEachActivity() |
Initialisiert eine neue instance der ForEachActivity-Klasse. |
ForEachActivity(String, Expression, IList<Activity>, IDictionary<String, Object>, String, IList<ActivityDependency>, IList<UserProperty>, Nullable<Boolean>, Nullable<Int32>) |
Initialisiert eine neue instance der ForEachActivity-Klasse. |
ForEachActivity()
Initialisiert eine neue instance der ForEachActivity-Klasse.
public ForEachActivity();
Public Sub New ()
Gilt für:
ForEachActivity(String, Expression, IList<Activity>, IDictionary<String, Object>, String, IList<ActivityDependency>, IList<UserProperty>, Nullable<Boolean>, Nullable<Int32>)
Initialisiert eine neue instance der ForEachActivity-Klasse.
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)
Parameter
- name
- String
Aktivitätsname.
- items
- Expression
Sammlung zum Durchlaufen.
- additionalProperties
- IDictionary<String,Object>
Nicht übereinstimmende Eigenschaften aus der Nachricht werden für diese Auflistung deserialisiert.
- description
- String
Aktivitätsbeschreibung.
- dependsOn
- IList<ActivityDependency>
Die Aktivität hängt von der Bedingung ab.
- userProperties
- IList<UserProperty>
Aktivitätsbenutzereigenschaften.
Sollte die Schleife in Sequenz oder parallel ausgeführt werden (max. 50)
Batchanzahl, die zum Steuern der Anzahl der parallelen Ausführungen verwendet werden soll (wenn „isSequential“ auf „false“ festgelegt ist).
Gilt für:
Azure SDK for .NET