Enum BlankLineHandling

Namespace
Wolfgang.Etl.FixedWidth.Enums
Assembly
Wolfgang.Etl.FixedWidth.dll

Specifies how the extractor behaves when it encounters a blank line in the file.

public enum BlankLineHandling

Fields

ReturnDefault = 2

Return a default (empty) instance of the target type for the blank line. All fields will contain their type's default value.

Skip = 1

Blank lines are invisible to all counting logic — they do not count toward SkipItemCount, MaximumItemCount, or CurrentSkippedItemCount. Processing continues with the next line.

ThrowException = 0

Throw a LineTooShortException when a blank line is encountered. This is the default behavior.