Class CustomSource

Define your own source block. This block generates data from a your own custom written functions.

Inheritance
object
DataFlowSource<ExpandoObject>
CustomSource<ExpandoObject>
CustomSource
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 CustomSource : CustomSource<ExpandoObject>, ILoggableTask, IDataFlowLogging, IDataFlowExecutableSource<ExpandoObject>, IDataFlowSource<ExpandoObject>, IDataFlowExecutableSource, IDataFlowSource, IDataFlowComponent

Constructors

CustomSource()

Declaration
    public CustomSource()

CustomSource(Func<int, ExpandoObject>, Predicate<int>)

Declaration
    public CustomSource(Func<int, ExpandoObject> readFunc, Predicate<int> readingCompleted)
Parameters
TypeNameDescription
System.Func<T, TResult><int, ExpandoObject>readFunc
System.Predicate<T><int>readingCompleted

Implements