Share via


TextFormat Constructors

Definition

Overloads

TextFormat()

Initializes a new instance of the TextFormat class.

TextFormat(IDictionary<String,Object>, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object)

Initializes a new instance of the TextFormat class.

TextFormat()

Initializes a new instance of the TextFormat class.

public TextFormat ();
Public Sub New ()

Applies to

TextFormat(IDictionary<String,Object>, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object, Object)

Initializes a new instance of the TextFormat class.

public TextFormat (System.Collections.Generic.IDictionary<string,object> additionalProperties = default, object serializer = default, object deserializer = default, object columnDelimiter = default, object rowDelimiter = default, object escapeChar = default, object quoteChar = default, object nullValue = default, object encodingName = default, object treatEmptyAsNull = default, object skipLineCount = default, object firstRowAsHeader = default);
new Microsoft.Azure.Management.DataFactory.Models.TextFormat : System.Collections.Generic.IDictionary<string, obj> * obj * obj * obj * obj * obj * obj * obj * obj * obj * obj * obj -> Microsoft.Azure.Management.DataFactory.Models.TextFormat
Public Sub New (Optional additionalProperties As IDictionary(Of String, Object) = Nothing, Optional serializer As Object = Nothing, Optional deserializer As Object = Nothing, Optional columnDelimiter As Object = Nothing, Optional rowDelimiter As Object = Nothing, Optional escapeChar As Object = Nothing, Optional quoteChar As Object = Nothing, Optional nullValue As Object = Nothing, Optional encodingName As Object = Nothing, Optional treatEmptyAsNull As Object = Nothing, Optional skipLineCount As Object = Nothing, Optional firstRowAsHeader As Object = Nothing)

Parameters

additionalProperties
IDictionary<String,Object>

Unmatched properties from the message are deserialized this collection

serializer
Object

Serializer. Type: string (or Expression with resultType string).

deserializer
Object

Deserializer. Type: string (or Expression with resultType string).

columnDelimiter
Object

The column delimiter. Type: string (or Expression with resultType string).

rowDelimiter
Object

The row delimiter. Type: string (or Expression with resultType string).

escapeChar
Object

The escape character. Type: string (or Expression with resultType string).

quoteChar
Object

The quote character. Type: string (or Expression with resultType string).

nullValue
Object

The null value string. 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).

treatEmptyAsNull
Object

Treat empty column values in the text file as null. The default value is true. Type: boolean (or Expression with resultType boolean).

skipLineCount
Object

The number of lines/rows to be skipped when parsing text files. The default value is 0. Type: integer (or Expression with resultType integer).

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).

Applies to