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)
Parameter | Type | Description |
---|---|---|
csvPath | String | The path to the CSV file to be used as the data source. |
See Also
- class CsvDataSource
- namespace GroupDocs.Assembly.Data
- assembly GroupDocs.Assembly
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)
Parameter | Type | Description |
---|---|---|
csvPath | String | The path to the CSV file to be used as the data source. |
options | CsvDataLoadOptions | Options for parsing the CSV data. |
See Also
- class CsvDataLoadOptions
- class CsvDataSource
- namespace GroupDocs.Assembly.Data
- assembly GroupDocs.Assembly
CsvDataSource(Stream)
Creates a new data source with data from a CSV stream using default options for parsing CSV data.
public CsvDataSource(Stream csvStream)
Parameter | Type | Description |
---|---|---|
csvStream | Stream | The stream of CSV data to be used as the data source. |
See Also
- class CsvDataSource
- namespace GroupDocs.Assembly.Data
- assembly GroupDocs.Assembly
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)
Parameter | Type | Description |
---|---|---|
csvStream | Stream | The stream of CSV data to be used as the data source. |
options | CsvDataLoadOptions | Options for parsing the CSV data. |
See Also
- class CsvDataLoadOptions
- class CsvDataSource
- namespace GroupDocs.Assembly.Data
- assembly GroupDocs.Assembly