Method ReadBegin
ReadBegin(StringTableCollection, CsvReader)
Called when reading a CSV file column header row.
This call should be used to determine which column indexes to use during ReadRow(SharedTableEntry, CsvReader).
Use reader.GetFieldIndex("Column Header", isTryGet: true)
to check for a column with a matching name.
Declaration
public override void ReadBegin(StringTableCollection collection, CsvReader csvReader)
Parameters
Type | Name | Description |
---|---|---|
StringTableCollection | collection | The target collection the CSV file is being imported into. |
CsvReader | csvReader | Provides acces to the CSV file. |