ContainmentModeType Enumeration
The ContainmentModeType enumeration identifies the boundaries of a search.
Namespace: ExchangeWebServices
Assembly: EWS (in EWS.dll)
Syntax
'Declaration
<SerializableAttribute> _
Public Enumeration ContainmentModeType
'Usage
Dim instance As ContainmentModeType
[SerializableAttribute]
public enum ContainmentModeType
Members
Member name | Description | |
---|---|---|
FullString | Specifies that the comparison is between the full string value of the property and the constant. If the property value and the supplied constant are the same, the expression resolves to true. | |
Prefixed | Specifies that the comparison is between the prefix of the property and the constant. If the prefix of the property value matches the value that is provided in the constant, the expression resolves to true. | |
Substring | Specifies that the comparison is between a substring of the property value and the constant. If the substring exists anywhere in the property value, the expression resolves to true. | |
PrefixOnWords | Specifies that the comparison is between a prefix on any individual word in the property value and the constant. If any of the words are prefixed with a value that matches the value that is provided in the constant, the expression resolves to true. | |
ExactPhrase | Specifies that the comparison is between the exact phrase in the property and the constant. If the phrase and the supplied constant are the same, the expression resolves to true. |
Remarks
This enumeration is used by the ContainmentMode property of the ContainsExpressionType object.