Title here
Summary here
A Csv destination defines a csv file where data from the flow is inserted.
Name | Description |
---|---|
TInput | Type of ingoing data |
CsvDestination<MyRow> dest = new CsvDestination<MyRow>("/path/to/file.csv");
dest.Wait(); //Wait for all data to arrive
Type | Name | Description |
---|---|---|
string | uri | The destination csv file name or uri |
Type | Name | Description |
---|---|---|
string | uri | The destination csv file name or uri |
ResourceType | resourceType | Specifies if data is loaded from a file, a web endpoint or other storage types (e.g. Azure Blob Storage) |
The CsvHelper Configuration. E.g. you can change the delimiter or the escape character here.
Type | Description |
---|---|
CsvConfiguration |
Gives you access to the CsvHelper CsvContext. You can modify the context before data is written.
Type | Description |
---|---|
Action<CsvContext> |
The content type used when sending the http request content.
Type | Description |
---|---|
string |
Type | Name | Description |
---|---|---|
TInput | data |