CsvDataSource

CsvDataSource(string)

Creates a new data source with data from a CSV file using default options for parsing CSV data.

public CsvDataSource(string csvPath)
ParameterTypeDescription
csvPathStringThe path to the CSV file to be used as the data source.

See Also


CsvDataSource(string, CsvDataLoadOptions)

Creates a new data source with data from a CSV file using the specified options for parsing CSV data.

public CsvDataSource(string csvPath, CsvDataLoadOptions options)
ParameterTypeDescription
csvPathStringThe path to the CSV file to be used as the data source.
optionsCsvDataLoadOptionsOptions for parsing the CSV data.

See Also


CsvDataSource(Stream)

Creates a new data source with data from a CSV stream using default options for parsing CSV data.

public CsvDataSource(Stream csvStream)
ParameterTypeDescription
csvStreamStreamThe stream of CSV data to be used as the data source.

See Also


CsvDataSource(Stream, CsvDataLoadOptions)

Creates a new data source with data from a CSV stream using the specified options for parsing CSV data.

public CsvDataSource(Stream csvStream, CsvDataLoadOptions options)
ParameterTypeDescription
csvStreamStreamThe stream of CSV data to be used as the data source.
optionsCsvDataLoadOptionsOptions for parsing the CSV data.

See Also