Class CSVInput
Describes how a CSV-formatted input object is formatted.
public class CSVInput
- Inheritance
-
CSVInput
- Inherited Members
Constructors
CSVInput()
public CSVInput()
Properties
AllowQuotedRecordDelimiter
Specifies that CSV field values may contain quoted record delimiters and such records should be allowed. Default value is FALSE. Setting this value to TRUE may lower performance.
public bool AllowQuotedRecordDelimiter { get; set; }
Property Value
Comments
Single character used to indicate a row should be ignored when present at the start of a row.
public string Comments { get; set; }
Property Value
FieldDelimiter
Value used to separate individual fields in a record.
public string FieldDelimiter { get; set; }
Property Value
FileHeaderInfo
Describes the first line of input. Valid values: None, Ignore, Use.
public FileHeaderInfo FileHeaderInfo { get; set; }
Property Value
QuoteCharacter
Value used for escaping where the field delimiter is part of the value.
public string QuoteCharacter { get; set; }
Property Value
QuoteEscapeCharacter
Single character used for escaping the quote character inside an already escaped value.
public string QuoteEscapeCharacter { get; set; }
Property Value
RecordDelimiter
Value used to separate individual records.
public string RecordDelimiter { get; set; }