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 = 0

Parse the line normally and yield the resulting record.

Skip = 1

Skip 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, or CurrentSkippedItemCount.

Stop = 2

Stop reading immediately. The current line is not parsed and no further lines are read. The async stream ends cleanly.