DelimitedTextDataset 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
DelimitedTextDataset() |
Initializes a new instance of the DelimitedTextDataset class. |
DelimitedTextDataset(LinkedServiceReference, DatasetLocation, IDictionary<String,Object>, String, Object, Object, IDictionary<String, ParameterSpecification>, IList<Object>, DatasetFolder, Object, Object, Object, Object, Object, Object, Object, Object, Object) |
Initializes a new instance of the DelimitedTextDataset class. |
DelimitedTextDataset()
Initializes a new instance of the DelimitedTextDataset class.
public DelimitedTextDataset ();
Public Sub New ()
Applies to
DelimitedTextDataset(LinkedServiceReference, DatasetLocation, IDictionary<String,Object>, String, Object, Object, IDictionary<String, ParameterSpecification>, IList<Object>, DatasetFolder, Object, Object, Object, Object, Object, Object, Object, Object, Object)
Initializes a new instance of the DelimitedTextDataset class.
public DelimitedTextDataset (Microsoft.Azure.Management.DataFactory.Models.LinkedServiceReference linkedServiceName, Microsoft.Azure.Management.DataFactory.Models.DatasetLocation location, System.Collections.Generic.IDictionary<string,object> additionalProperties = default, string description = default, object structure = default, object schema = default, System.Collections.Generic.IDictionary<string,Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification> parameters = default, System.Collections.Generic.IList<object> annotations = default, Microsoft.Azure.Management.DataFactory.Models.DatasetFolder folder = default, object columnDelimiter = default, object rowDelimiter = default, object encodingName = default, object compressionCodec = default, object compressionLevel = default, object quoteChar = default, object escapeChar = default, object firstRowAsHeader = default, object nullValue = default);
new Microsoft.Azure.Management.DataFactory.Models.DelimitedTextDataset : Microsoft.Azure.Management.DataFactory.Models.LinkedServiceReference * Microsoft.Azure.Management.DataFactory.Models.DatasetLocation * System.Collections.Generic.IDictionary<string, obj> * string * obj * obj * System.Collections.Generic.IDictionary<string, Microsoft.Azure.Management.DataFactory.Models.ParameterSpecification> * System.Collections.Generic.IList<obj> * Microsoft.Azure.Management.DataFactory.Models.DatasetFolder * obj * obj * obj * obj * obj * obj * obj * obj * obj -> Microsoft.Azure.Management.DataFactory.Models.DelimitedTextDataset
Public Sub New (linkedServiceName As LinkedServiceReference, location As DatasetLocation, Optional additionalProperties As IDictionary(Of String, Object) = Nothing, Optional description As String = Nothing, Optional structure As Object = Nothing, Optional schema As Object = Nothing, Optional parameters As IDictionary(Of String, ParameterSpecification) = Nothing, Optional annotations As IList(Of Object) = Nothing, Optional folder As DatasetFolder = Nothing, Optional columnDelimiter As Object = Nothing, Optional rowDelimiter As Object = Nothing, Optional encodingName As Object = Nothing, Optional compressionCodec As Object = Nothing, Optional compressionLevel As Object = Nothing, Optional quoteChar As Object = Nothing, Optional escapeChar As Object = Nothing, Optional firstRowAsHeader As Object = Nothing, Optional nullValue As Object = Nothing)
Parameters
- linkedServiceName
- LinkedServiceReference
Linked service reference.
- location
- DatasetLocation
The location of the delimited text storage.
- additionalProperties
- IDictionary<String,Object>
Unmatched properties from the message are deserialized this collection
- description
- String
Dataset description.
- structure
- Object
Columns that define the structure of the dataset. Type: array (or Expression with resultType array), itemType: DatasetDataElement.
- schema
- Object
Columns that define the physical type schema of the dataset. Type: array (or Expression with resultType array), itemType: DatasetSchemaDataElement.
- parameters
- IDictionary<String,ParameterSpecification>
Parameters for dataset.
- folder
- DatasetFolder
The folder that this Dataset is in. If not specified, Dataset will appear at the root level.
- columnDelimiter
- Object
The column delimiter. Type: string (or Expression with resultType string).
- rowDelimiter
- Object
The row delimiter. Type: string (or Expression with resultType string).
- encodingName
- Object
The code page name of the preferred encoding. If miss, the default value is UTF-8, unless BOM denotes another Unicode encoding. Refer to the name column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).
- compressionCodec
- Object
The data compressionCodec. Type: string (or Expression with resultType string).
- compressionLevel
- Object
The data compression method used for DelimitedText.
- quoteChar
- Object
The quote character. Type: string (or Expression with resultType string).
- escapeChar
- Object
The escape character. Type: string (or Expression with resultType string).
- firstRowAsHeader
- Object
When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).
- nullValue
- Object
The null value string. Type: string (or Expression with resultType string).
Applies to
Azure SDK for .NET