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.

Inherited Members
Namespace: ETLBox.DataFlow
Assembly: ETLBox.dll
Syntax
    public class MemoryDestination : MemoryDestination<ExpandoObject>, IDataFlowLogging, IDataFlowDestination<ExpandoObject>, IDataFlowDestination, IDataFlowComponent, ILoggableTask
Examples
  MemoryDestination<MySimpleRow> dest = new MemoryDestination<MySimpleRow>();
                       //data is accessible in dest.Data

Constructors

MemoryDestination()

Declaration
    public MemoryDestination()

Implements