Click or drag to resize

RecordCondition Enumeration

The condition used to include or exclude each record.

Namespace:  FileHelpers
Assembly:  FileHelpers (in FileHelpers.dll) Version: 3.2.6
Syntax
public enum RecordCondition
Members
  Member nameValueDescription
None0No Condition, Include it always.
IncludeIfContains1Include the record if it contains the selector string.
IncludeIfBegins2Include the record if it begins with selector string.
IncludeIfEnds3Include the record if it ends with selector string.
IncludeIfEnclosed4Include the record if it begins and ends with selector string.
IncludeIfMatchRegex5Include the record if it matches the regular expression passed as selector.
ExcludeIfContains6Exclude the record if it contains the selector string.
ExcludeIfBegins7Exclude the record if it begins with selector string.
ExcludeIfEnds8Exclude the record if it ends with selector string.
ExcludeIfEnclosed9Exclude the record if it begins and ends with selector string.
ExcludeIfMatchRegex10Exclude the record if it matches the regular expression passed as selector.
See Also