Class UserQueryFilter

Base class for queries on user fields.

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

Properties

Id

Gets or sets id of the user to filter on.

Declaration
RequestResponse
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
RequestResponse
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
RequestResponse
public ComparisonOperator Operator { get; set; }
Property Value
TypeDescription
ComparisonOperator

Username

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

Declaration
RequestResponse
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
RequestResponse
public IEnumerable<string> Usernames { get; set; }
Property Value
TypeDescription
IEnumerable<>string

Do you have some feedback for us?

If you have suggestions for improving this article,