Class TextDestination

Writes data into a text file. Each line in the output is created by calling the WriteLineFunc or by invoking ToString() on the object.

Inherited Members
Namespace: ETLBox.DataFlow
Assembly: ETLBox.dll
Syntax
    public class TextDestination : TextDestination<ExpandoObject>, IDataFlowLogging, IDataFlowStreamDestination<ExpandoObject>, IDataFlowStreamDestination, IDataFlowDestination<ExpandoObject>, IDataFlowDestination, IDataFlowComponent, ILoggableTask

Constructors

TextDestination()

Declaration
    public TextDestination()

TextDestination(string)

Declaration
    public TextDestination(string fileName)
Parameters
TypeNameDescription
stringfileName

TextDestination(string, Func<ExpandoObject, string>)

Declaration
    public TextDestination(string fileName, Func<ExpandoObject, string> writeLineFunc)
Parameters
TypeNameDescription
stringfileName
Func<ExpandoObject, string>writeLineFunc

Implements