Table of Contents

Class SearchGuildMemberProperties

Namespace
Kook
Assembly
Kook.Net.Core.dll

Properties that are used to search for a IGuildUser in a IGuild.

public class SearchGuildMemberProperties
Inheritance
SearchGuildMemberProperties
Inherited Members

Properties

IsMobileVerified

Gets or sets whether the user must have his/her mobile verified to be searched for; null to not search via a verified status.

public bool? IsMobileVerified { get; set; }

Property Value

bool?

RoleId

Gets or sets the ID of the role the user must have to be searched for; null to not search via a role.

public uint? RoleId { get; set; }

Property Value

uint?

SearchName

Gets or sets the name of the user to be searched for; null to not search via a name.

public string? SearchName { get; set; }

Property Value

string

SortedByActiveTime

Gets or sets whether and how the searching results should be sorted by the activating time of the user; null to not sort by active time.

public SortMode? SortedByActiveTime { get; set; }

Property Value

SortMode?

SortedByJoinTime

Gets or sets whether and how the searching results should be sorted by the joining time of the user; null to not sort by joining time.

public SortMode? SortedByJoinTime { get; set; }

Property Value

SortMode?

See Also