FieldFilterOperation 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.
Enumerates supported filter operations.
[Newtonsoft.Json.JsonConverter(typeof(Microsoft.Store.PartnerCenter.Models.JsonConverters.EnumJsonConverter))]
public enum FieldFilterOperation
[<Newtonsoft.Json.JsonConverter(typeof(Microsoft.Store.PartnerCenter.Models.JsonConverters.EnumJsonConverter))>]
type FieldFilterOperation =
Public Enum FieldFilterOperation
- Inheritance
-
FieldFilterOperation
- Attributes
Fields
Name | Value | Description |
---|---|---|
Equals | 0 | Equals filter. |
NotEquals | 1 | Not equals filter. |
GreaterThan | 2 | Greater than filter. |
GreaterThanOrEquals | 3 | Greater than or equal filter. |
LessThan | 4 | Less than filter. |
LessThanOrEquals | 5 | Less than or equals filter. |
Substring | 6 | Substring filter. |
And | 7 | And filter. |
Or | 8 | Or filter. |
StartsWith | 9 | String starts with filter. |
NotStartsWith | 10 | String does not starts with filter. |