Class CsvDestination

A Csv destination defines a csv file where data from the flow is inserted.

Inherited Members
Namespace: ETLBox.Csv
Assembly: ETLBox.Csv.dll
Syntax
    public class CsvDestination : CsvDestination<ExpandoObject>, IDataFlowLogging, IDataFlowStreamDestination<ExpandoObject>, IDataFlowDestination<ExpandoObject>, IDataFlowStreamDestination, IDataFlowDestination, IDataFlowComponent, ILoggableTask
Examples
  CsvDestination<MyRow> dest = new CsvDestination<MyRow>("/path/to/file.csv");
                                                                                                                                  dest.Wait(); //Wait for all data to arrive

Constructors

CsvDestination()

Declaration
    public CsvDestination()

CsvDestination(string)

Declaration
    public CsvDestination(string fileName)
Parameters
TypeNameDescription
stringfileName

Implements