Class CSVOutput
Describes how CSV-formatted results are formatted.
public class CSVOutput
- Inheritance
-
CSVOutput
- Inherited Members
Constructors
CSVOutput()
public CSVOutput()
Properties
FieldDelimiter
Value used to separate individual fields in a record.
public string FieldDelimiter { 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
QuoteFields
Indicates whether or not all output fields should be quoted.
public QuoteFields QuoteFields { get; set; }
Property Value
RecordDelimiter
Value used to separate individual records.
public string RecordDelimiter { get; set; }