Share via


Activity Constructors

Definition

Overloads

Activity()

Initializes a new instance of the Activity class.

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

Initializes a new instance of the Activity class.

Activity()

Initializes a new instance of the Activity class.

public Activity ();
Public Sub New ()

Applies to

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

Initializes a new instance of the Activity class.

public Activity (string name, 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);
new Microsoft.Azure.Management.DataFactory.Models.Activity : string * 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> -> Microsoft.Azure.Management.DataFactory.Models.Activity
Public Sub New (name As String, 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)

Parameters

name
String

Activity name.

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.

Applies to