Class ComparisonFilter
A filter used to compare a specified attribute key to a given value using a defined comparison operation.
public class ComparisonFilter : IFileSearchFilter
- Inheritance
-
objectComparisonFilter
- Implements
Properties
Key
Required. The key to compare against the value.
public string Key { get; set; }
Property Value
- string
Type
Required. Specifies the comparison operator: eq, ne, gt, gte, lt, lte.
public ComparisonType Type { get; set; }
Property Value
Value
Required. The value to compare against the attribute key; supports string, number, or boolean types.
public object Value { get; set; }
Property Value
- object