Enum LineAction
- Namespace
- Wolfgang.Etl.FixedWidth.Enums
- Assembly
- Wolfgang.Etl.FixedWidth.dll
Indicates what the extractor should do with a line of input. Returned by the LineFilter delegate.
public enum LineAction
Fields
Process = 0Parse the line normally and yield the resulting record.
Skip = 1Skip this line without parsing it. The extractor continues reading subsequent lines. The line is invisible to all counting logic — it does not count toward
SkipItemCount,MaximumItemCount, orCurrentSkippedItemCount.Stop = 2Stop reading immediately. The current line is not parsed and no further lines are read. The async stream ends cleanly.