Header Enumeration

Named constants to describe the presence of the header row of a CSV file.

Definition

Namespace: FolkerKinzel.CsvTools
Assembly: FolkerKinzel.CsvTools (in FolkerKinzel.CsvTools.dll) Version: 2.0.1+2345335399184346d9b2cc992ed5c814406052c1
C#
public enum Header

Members

ProbablyPresent0 Indicates that the CsvAnalyzer should take into account that the first row of the CSV file could be a header row.
Present1 Indicates that the first row of the CSV file should be treated as a header row. (This information can be taken from the header parameter of the text/csv MIME type.)
Absent-1 Indicates that the CSV file has no header row. (This information can be taken from the header parameter of the text/csv MIME type.)

See Also