Class GuildMembersChunkEventArgs
Represents arguments for GuildMembersChunked event.
Inheritance
System.Object
System.EventArgs
GuildMembersChunkEventArgs
Namespace: DisCatSharp.EventArgs
Assembly: DisCatSharp.dll
Syntax
public class GuildMembersChunkEventArgs : DiscordEventArgs
Properties
| Improve this Doc View SourceChunkCount
Gets the total amount of chunks for the request.
Declaration
public int ChunkCount { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
ChunkIndex
Gets the current chunk index from the response.
Declaration
public int ChunkIndex { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
Guild
Gets the guild that requested this chunk.
Declaration
public DiscordGuild Guild { get; }
Property Value
Type | Description |
---|---|
DiscordGuild |
Members
Gets the collection of members returned from this chunk.
Declaration
public IReadOnlyCollection<DiscordMember> Members { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IReadOnlyCollection<DiscordMember> |
Nonce
Gets the unique string used to identify the request, if specified.
Declaration
public string Nonce { get; set; }
Property Value
Type | Description |
---|---|
System.String |
NotFound
Gets the returned Ids that were not found in the chunk, if specified.
Declaration
public IReadOnlyCollection<ulong> NotFound { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IReadOnlyCollection<System.UInt64> |
Presences
Gets the collection of presences returned from this chunk, if specified.
Declaration
public IReadOnlyCollection<DiscordPresence> Presences { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IReadOnlyCollection<DiscordPresence> |