LookupActivity 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
LookupActivity() |
Initializes a new instance of the LookupActivity class. |
LookupActivity(String, CopySource, DatasetReference, IDictionary<String, Object>, String, IList<ActivityDependency>, IList<UserProperty>, LinkedServiceReference, ActivityPolicy, Object) |
Initializes a new instance of the LookupActivity class. |
LookupActivity()
Initializes a new instance of the LookupActivity class.
public LookupActivity ();
Public Sub New ()
Applies to
LookupActivity(String, CopySource, DatasetReference, IDictionary<String, Object>, String, IList<ActivityDependency>, IList<UserProperty>, LinkedServiceReference, ActivityPolicy, Object)
Initializes a new instance of the LookupActivity class.
public LookupActivity (string name, Microsoft.Azure.Management.DataFactory.Models.CopySource source, Microsoft.Azure.Management.DataFactory.Models.DatasetReference dataset, 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, Microsoft.Azure.Management.DataFactory.Models.LinkedServiceReference linkedServiceName = default, Microsoft.Azure.Management.DataFactory.Models.ActivityPolicy policy = default, object firstRowOnly = default);
new Microsoft.Azure.Management.DataFactory.Models.LookupActivity : string * Microsoft.Azure.Management.DataFactory.Models.CopySource * Microsoft.Azure.Management.DataFactory.Models.DatasetReference * 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.LinkedServiceReference * Microsoft.Azure.Management.DataFactory.Models.ActivityPolicy * obj -> Microsoft.Azure.Management.DataFactory.Models.LookupActivity
Public Sub New (name As String, source As CopySource, dataset As DatasetReference, 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 linkedServiceName As LinkedServiceReference = Nothing, Optional policy As ActivityPolicy = Nothing, Optional firstRowOnly As Object = Nothing)
Parameters
- name
- String
Activity name.
- source
- CopySource
Dataset-specific source properties, same as copy activity source.
- dataset
- DatasetReference
Lookup activity dataset reference.
- 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.
- linkedServiceName
- LinkedServiceReference
Linked service reference.
- policy
- ActivityPolicy
Activity policy.
- firstRowOnly
- Object
Whether to return first row or all rows. Default value is true. Type: boolean (or Expression with resultType boolean).
Applies to
Azure SDK for .NET