Enum StringExtensions.SearchOptions
Describes search options for the method TokenSearch(string, string, SearchOptions)
Namespace: TheXDS.MCART.Types.Extensions
Assembly: MCART.dll
Syntax
[Flags]
public enum StringExtensions.SearchOptions
Fields
| Name | Description |
|---|---|
| CaseSensitive | Case-sensitive search mode. The string will match the search terms if it contains at least one of the tokens. |
| Default | Default search mode. Case will be ignored and the string will match the search terms if it contains at least one of the tokens. |
| IncludeAll | Strict search mode. Case will be ignored, and the string will match the search terms if it contains all specified tokens. |
| Wildcard | Interpret tokens using the Like operator |