Class MemoryDestination

A destination in memory - it will store all data in a collection that you assign to the Data property. By default, a List is used to store th data. If you need to access the data concurrently while rows are still written into the target, see the ConcurrentMemoryDestination.

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

Constructors

MemoryDestination()

Declaration
    public MemoryDestination()

Implements