Class IdentifierQueryFilter
Filters on entities of specified definition(s).
Namespace: StylelabsStylelabs.MStylelabs.M.BaseQueryingFilters
Assembly: Stylelabs.M.Sdk.dll
Syntax
RequestResponse
public class IdentifierQueryFilter : QueryFilter
Properties
Operator
Declaration
RequestResponse
public ComparisonOperator Operator { get; set; }
Property Value
Type | Description |
---|---|
ComparisonOperator |
Type
Gets the type of the filter.
Declaration
RequestResponse
public override FilterType Type { get; }
Property Value
Type | Description |
---|---|
FilterType |
Overrides
Value
Gets or sets the identifier to filter on.
Declaration
RequestResponse
public string Value { get; set; }
Property Value
Type | Description |
---|---|
string |
Values
Gets or sets the identifiers to filter on. If multiple values are specified, the filter will combine them using "OR" (essentially an IN-clause).
Declaration
RequestResponse
public IEnumerable<string> Values { get; set; }
Property Value
Type | Description |
---|---|
IEnumerable<>string |
Methods
Accept(IFilterVisitor)
Accepts a query visitor.
Declaration
RequestResponse
public override void Accept(IFilterVisitor visitor)
Parameters
Type | Name | Description |
---|---|---|
IFilterVisitor | visitor |
The visitor to accept. |