Class CustomDestination

Define your own destination block. This block accepts all data from the flow and sends each incoming row to your custom Action, along with a count of processed rows.

Inheritance
object
DataFlowDestination<ExpandoObject>
CustomDestination<ExpandoObject>
CustomDestination
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: ETLBox.DataFlow
Assembly: ETLBox.dll
Syntax
    public class CustomDestination : CustomDestination<ExpandoObject>, ILoggableTask, IDataFlowLogging, IDataFlowDestination<ExpandoObject>, IDataFlowDestination, IDataFlowComponent

Constructors

CustomDestination()

Declaration
    public CustomDestination()

CustomDestination(Action<ExpandoObject, int>)

Declaration
    public CustomDestination(Action<ExpandoObject, int> writeAction)
Parameters
TypeNameDescription
System.Action<T1, T2><ExpandoObject, int>writeAction

Implements