Sdílet prostřednictvím


IfConditionActivity Constructors

Definition

Overloads

IfConditionActivity()

Initializes a new instance of the IfConditionActivity class.

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

Initializes a new instance of the IfConditionActivity class.

IfConditionActivity()

Initializes a new instance of the IfConditionActivity class.

public IfConditionActivity ();
Public Sub New ()

Applies to

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

Initializes a new instance of the IfConditionActivity class.

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)

Parameters

name
String

Activity name.

expression
Expression

An expression that would evaluate to Boolean. This is used to determine the block of activities (ifTrueActivities or ifFalseActivities) that will be executed.

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.

ifTrueActivities
IList<Activity>

List of activities to execute if expression is evaluated to true. This is an optional property and if not provided, the activity will exit without any action.

ifFalseActivities
IList<Activity>

List of activities to execute if expression is evaluated to false. This is an optional property and if not provided, the activity will exit without any action.

Applies to