RecordCondition Enumeration |
The condition used to include or exclude each record.
Namespace:
FileHelpers
Assembly:
FileHelpers (in FileHelpers.dll) Version: 3.2.6
Syntaxpublic enum RecordCondition
Public Enumeration RecordCondition
Members
| Member name | Value | Description |
---|
| None | 0 | No Condition, Include it always. |
| IncludeIfContains | 1 | Include the record if it contains the selector string. |
| IncludeIfBegins | 2 | Include the record if it begins with selector string. |
| IncludeIfEnds | 3 | Include the record if it ends with selector string. |
| IncludeIfEnclosed | 4 | Include the record if it begins and ends with selector string. |
| IncludeIfMatchRegex | 5 | Include the record if it matches the regular expression passed as selector. |
| ExcludeIfContains | 6 | Exclude the record if it contains the selector string. |
| ExcludeIfBegins | 7 | Exclude the record if it begins with selector string. |
| ExcludeIfEnds | 8 | Exclude the record if it ends with selector string. |
| ExcludeIfEnclosed | 9 | Exclude the record if it begins and ends with selector string. |
| ExcludeIfMatchRegex | 10 | Exclude the record if it matches the regular expression passed as selector. |
See Also