| | | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | | 2 | | // Licensed under the MIT License. |
| | | 3 | | |
| | | 4 | | using System; |
| | | 5 | | using System.Collections.Generic; |
| | | 6 | | using System.Text; |
| | | 7 | | |
| | | 8 | | namespace Azure.Storage.Files.DataLake.Models |
| | | 9 | | { |
| | | 10 | | /// <summary> |
| | | 11 | | /// CSV text configuration. |
| | | 12 | | /// </summary> |
| | | 13 | | public class DataLakeQueryCsvTextOptions : IDataLakeQueryTextOptions |
| | | 14 | | { |
| | | 15 | | /// <summary> |
| | | 16 | | /// Record Separator. |
| | | 17 | | /// </summary> |
| | 0 | 18 | | public string RecordSeparator { get; set; } |
| | | 19 | | |
| | | 20 | | /// <summary> |
| | | 21 | | /// Column separator. |
| | | 22 | | /// </summary> |
| | 0 | 23 | | public string ColumnSeparator { get; set; } |
| | | 24 | | |
| | | 25 | | /// <summary> |
| | | 26 | | /// Field quote. |
| | | 27 | | /// </summary> |
| | 0 | 28 | | public char? QuotationCharacter { get; set; } |
| | | 29 | | |
| | | 30 | | /// <summary> |
| | | 31 | | /// Escape character. |
| | | 32 | | /// </summary> |
| | 0 | 33 | | public char? EscapeCharacter { get; set; } |
| | | 34 | | |
| | | 35 | | /// <summary> |
| | | 36 | | /// Has headers. |
| | | 37 | | /// </summary> |
| | 0 | 38 | | public bool HasHeaders { get; set; } |
| | | 39 | | } |
| | | 40 | | } |