1. UserQueryFilter

Class UserQueryFilter

Base class for queries on user fields.

Inheritance
object
UserQueryFilter
Namespace: StylelabsStylelabs.MStylelabs.M.BaseQueryingFilters
Assembly: Stylelabs.M.Sdk.dll
Syntax
public abstract class UserQueryFilter : QueryFilter

Properties

Id

Gets or sets id of the user to filter on.

Declaration
public long? Id { get; set; }
Property Value
TypeDescription
long

Ids

Gets or sets ids of the users to filter on. If multiple values are specified, the filter will combine them using "OR" (essentially an IN-clause).

Declaration
public IEnumerable<long> Ids { get; set; }
Property Value
TypeDescription
IEnumerable<>long

Operator

Gets or sets the operator used to compare the value(s). Must be either Equals or NotEquals.

Declaration
public ComparisonOperator Operator { get; set; }
Property Value
TypeDescription
ComparisonOperator

Username

Gets or sets the name of the user to filter on.

Declaration
public string Username { get; set; }
Property Value
TypeDescription
string

Usernames

Gets or sets the names of the users to filter on. If multiple values are specified, the filter will combine them using "OR" (essentially an IN-clause).

Declaration
public IEnumerable<string> Usernames { get; set; }
Property Value
TypeDescription
IEnumerable<>string
If you have suggestions for improving this article, let us know!