Azure.Storage.Blobs.Models.DelimitedTextConfigurationInternal
Groups the settings used for interpreting the blob data if the blob is delimited text formatted.
namespace Azure.Storage.Blobs.Models
{
internal class DelimitedTextConfigurationInternal : IXmlSerializable
{
public string ColumnSeparator { get; set; }
public string FieldQuote { get; set; }
public string RecordSeparator { get; set; }
public string EscapeChar { get; set; }
public bool? HeadersPresent { get; set; }
public DelimitedTextConfigurationInternal();
}
}