次の方法で共有


IfConditionActivity コンストラクター

定義

オーバーロード

IfConditionActivity()

IfConditionActivity クラスの新しいインスタンスを初期化します。

IfConditionActivity(String, Expression, IDictionary<String,Object>, String, IList<ActivityDependency>, IList<UserProperty>, IList<Activity>, IList<Activity>)

IfConditionActivity クラスの新しいインスタンスを初期化します。

IfConditionActivity()

IfConditionActivity クラスの新しいインスタンスを初期化します。

public IfConditionActivity ();
Public Sub New ()

適用対象

IfConditionActivity(String, Expression, IDictionary<String,Object>, String, IList<ActivityDependency>, IList<UserProperty>, IList<Activity>, IList<Activity>)

IfConditionActivity クラスの新しいインスタンスを初期化します。

public IfConditionActivity (string name, Microsoft.Azure.Management.DataFactory.Models.Expression expression, 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, System.Collections.Generic.IList<Microsoft.Azure.Management.DataFactory.Models.Activity> ifTrueActivities = default, System.Collections.Generic.IList<Microsoft.Azure.Management.DataFactory.Models.Activity> ifFalseActivities = default);
new Microsoft.Azure.Management.DataFactory.Models.IfConditionActivity : string * Microsoft.Azure.Management.DataFactory.Models.Expression * 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> * System.Collections.Generic.IList<Microsoft.Azure.Management.DataFactory.Models.Activity> * System.Collections.Generic.IList<Microsoft.Azure.Management.DataFactory.Models.Activity> -> Microsoft.Azure.Management.DataFactory.Models.IfConditionActivity
Public Sub New (name As String, expression As Expression, 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 ifTrueActivities As IList(Of Activity) = Nothing, Optional ifFalseActivities As IList(Of Activity) = Nothing)

パラメーター

name
String

アクティビティ名。

expression
Expression

ブール値に評価される式。 これは、実行されるアクティビティのブロック (ifTrueActivities または ifFalseActivities) を決定するために使用されます。

additionalProperties
IDictionary<String,Object>

メッセージの一致しないプロパティは、このコレクションを逆シリアル化します

description
String

アクティビティの説明。

dependsOn
IList<ActivityDependency>

アクティビティは条件によって異なります。

userProperties
IList<UserProperty>

アクティビティ ユーザーのプロパティ。

ifTrueActivities
IList<Activity>

expression が true に評価された場合に実行するアクティビティの一覧。 これは省略可能なプロパティであり、指定されていない場合、アクティビティはアクションなしで終了します。

ifFalseActivities
IList<Activity>

expression が false に評価された場合に実行するアクティビティの一覧。 これは省略可能なプロパティであり、指定されていない場合、アクティビティはアクションなしで終了します。

適用対象