Runtime Data Search
| SearchOptions Enumeration |
Search options.
Namespace: RuntimeDataSearch
Assembly: RuntimeDataSearch (in RuntimeDataSearch.dll) Version: 1.1.0.0 (1.1.0.0)
SyntaxC#
[FlagsAttribute] public enum SearchOptions
Members| Member name | Value | Description | |
|---|---|---|---|
| Default | 0 | Search for a value in the entire hierarchy and do not stop after exceptions. | |
| SearchNames | 1 | Implicitly searches the values. | |
| StopAtFirstFind | 2 | Implicitly browses the entire hierarchy. | |
| StopAfterException | 4 | Implicitly continues after exceptions. | |
| IgnoreProperties | 8 | Ignore properties. | |
| IgnoreFields | 16 | Ignore fields. | |
| IgnoreArrays | 32 | Ignore arrays. | |
| IgnoreEnumerables | 64 | Ignore IEnumerable. | |
| CaseSensitive | 128 | Case sensitive comparison. | |
| AllWord | 256 | Compare entire word. |
See Also