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 = 2Return a default (empty) instance of the target type for the blank line. All fields will contain their type's default value.
Skip = 1Blank lines are invisible to all counting logic — they do not count toward
SkipItemCount,MaximumItemCount, orCurrentSkippedItemCount. Processing continues with the next line.ThrowException = 0Throw a LineTooShortException when a blank line is encountered. This is the default behavior.