Enum FilteringCriteria
- Namespace
- PnP.Core.QueryModel
- Assembly
- PnP.Core.dll
Enumeration of filtering criteria for queries
[SuppressMessage("Naming", "CA1717:Only FlagsAttribute enums should have plural names", Justification = "<Pending>")]
public enum FilteringCriteria
Fields
Equal = 0Corresponds to the = operator
GreaterThan = 2Corresponds to the > operator
GreaterThanOrEqual = 3Corresponds to the >= operator
LessThan = 4Corresponds to the < operator
LessThanOrEqual = 5Corresponds to the <= operator
Not = 6Corresponds to the ! operator
NotEqual = 1Corresponds to the != operator