Table of Contents

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 = 0

Corresponds to the = operator

GreaterThan = 2

Corresponds to the > operator

GreaterThanOrEqual = 3

Corresponds to the >= operator

LessThan = 4

Corresponds to the < operator

LessThanOrEqual = 5

Corresponds to the <= operator

Not = 6

Corresponds to the ! operator

NotEqual = 1

Corresponds to the != operator