QueryStringOperator 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.
Describes operator to be matched.
public enum QueryStringOperator
type QueryStringOperator =
Public Enum QueryStringOperator
- Inheritance
-
QueryStringOperator
Fields
| Name | Value | Description |
|---|---|---|
| Any | 0 | Any. |
| Equal | 1 | Equal. |
| Contains | 2 | Contains. |
| BeginsWith | 3 | BeginsWith. |
| EndsWith | 4 | EndsWith. |
| LessThan | 5 | LessThan. |
| LessThanOrEqual | 6 | LessThanOrEqual. |
| GreaterThan | 7 | GreaterThan. |
| GreaterThanOrEqual | 8 | GreaterThanOrEqual. |
| RegEx | 9 | RegEx. |