Class ThreadMembersUpdateEventArgs
Represents arguments for ThreadMembersUpdated event.
Inheritance
System.Object
System.EventArgs
ThreadMembersUpdateEventArgs
Namespace: DisCatSharp.EventArgs
Assembly: DisCatSharp.dll
Syntax
public class ThreadMembersUpdateEventArgs : DiscordEventArgs
Properties
| Improve this Doc View SourceAddedMembers
Gets the users who were added to the thread.
Declaration
public IReadOnlyList<DiscordThreadChannelMember> AddedMembers { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IReadOnlyList<DiscordThreadChannelMember> |
Guild
Gets the guild.
Declaration
public DiscordGuild Guild { get; }
Property Value
Type | Description |
---|---|
DiscordGuild |
MemberCount
Gets the approximate number of members in the thread, capped at 50.
Declaration
public int MemberCount { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
RemovedMembers
Gets the users who were removed from the thread.
Declaration
public IReadOnlyList<DiscordMember> RemovedMembers { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IReadOnlyList<DiscordMember> |
Thread
Gets the id of the thread.
Declaration
public DiscordThreadChannel Thread { get; }
Property Value
Type | Description |
---|---|
DiscordThreadChannel |
ThreadId
Gets the id of the thread.
Declaration
public ulong ThreadId { get; }
Property Value
Type | Description |
---|---|
System.UInt64 |