Namespace Cursively.Inputs
Classes
CsvAsyncInputBase
Models a CSV source data stream that can be processed asynchronously.
CsvAsyncStreamInput
Implementation of CsvAsyncInputBase backed by a Stream.
CsvMemoryMappedFileInput
Implementation of CsvSyncInputBase backed by a file from the filesystem that will be processed by mapping it into virtual memory and then treating it like a contiguous array of bytes.
CsvPipeReaderInput
Implementation of CsvAsyncInputBase backed by a PipeReader.
CsvReadOnlyMemoryInput
Implementation of CsvSyncInputBase backed by a ReadOnlyMemory<T> of bytes.
CsvReadOnlySequenceInput
Implementation of CsvSyncInputBase backed by a ReadOnlySequence<T> of bytes.
CsvSyncInputBase
Models a CSV source data stream that can be processed synchronously.
CsvSyncStreamInput
Implementation of CsvSyncInputBase backed by a Stream.