ContainmentMode Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Defines the containment mode for Contains search filters.
public enum class ContainmentMode
public enum ContainmentMode
Public Enum ContainmentMode
- Inheritance
-
ContainmentMode
Fields
Name | Value | Description |
---|---|---|
FullString | 0 | The comparison is between the full string and the constant. The property value and the supplied constant are exactly the same. |
Prefixed | 1 | The comparison is between the string prefix and the constant. |
Substring | 2 | The comparison is between a substring of the string and the constant. |
PrefixOnWords | 3 | The comparison is between a prefix on individual words in the string and the constant. |
ExactPhrase | 4 | The comparison is between an exact phrase in the string and the constant. |