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
A single character used to indicate that a row should be ignored when the character is present at the start of that row. You can specify any character to indicate a comment line. The default character is
#
.
Default:
#
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; }