Title here
Summary here
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.
Name | Description |
---|---|
TInput | Type of ingoing data. |
MemoryDestination<MySimpleRow> dest = new MemoryDestination<MySimpleRow>();
//data is accessible in dest.Data
Type | Description |
---|---|
bool |
The generic List<T> that will store all rows of incoming data in memory.
Type | Description |
---|---|
ICollection<TInput> |
Type | Name | Description |
---|---|---|
TInput | row |
Type | Name | Description |
---|---|---|
Exception | e |