Show / Hide Table of Contents

Class TextFormat

The data stored in text format.

Inheritance
System.Object
DatasetStorageFormat
TextFormat
Inherited Members
DatasetStorageFormat.AdditionalProperties
DatasetStorageFormat.Deserializer
DatasetStorageFormat.Serializer
Namespace: System.Dynamic.ExpandoObject
Assembly: Azure.Analytics.Synapse.Artifacts.dll
Syntax
[System.Text.Json.Serialization.JsonConverter(typeof(Azure.Analytics.Synapse.Artifacts.Models.TextFormat/TextFormatConverter))]
public class TextFormat : Azure.Analytics.Synapse.Artifacts.Models.DatasetStorageFormat

Constructors

TextFormat()

Initializes a new instance of TextFormat.

Declaration
public TextFormat ();

Properties

ColumnDelimiter

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

Declaration
public object ColumnDelimiter { get; set; }
Property Value
System.Object

EncodingName

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

Declaration
public object EncodingName { get; set; }
Property Value
System.Object

EscapeChar

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

Declaration
public object EscapeChar { get; set; }
Property Value
System.Object

FirstRowAsHeader

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

Declaration
public object FirstRowAsHeader { get; set; }
Property Value
System.Object

NullValue

The null value string. Type: string (or Expression with resultType string).

Declaration
public object NullValue { get; set; }
Property Value
System.Object

QuoteChar

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

Declaration
public object QuoteChar { get; set; }
Property Value
System.Object

RowDelimiter

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

Declaration
public object RowDelimiter { get; set; }
Property Value
System.Object

SkipLineCount

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

Declaration
public object SkipLineCount { get; set; }
Property Value
System.Object

TreatEmptyAsNull

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

Declaration
public object TreatEmptyAsNull { get; set; }
Property Value
System.Object

Back to top Azure SDK for .NET