Class MessageReactionRemoveEventArgs
Represents arguments for MessageReactionRemoved event.
Inheritance
System.Object
System.EventArgs
MessageReactionRemoveEventArgs
Namespace: DisCatSharp.EventArgs
Assembly: DisCatSharp.dll
Syntax
public class MessageReactionRemoveEventArgs : DiscordEventArgs
Properties
| Improve this Doc View SourceChannel
Gets the channel to which this message belongs.
Declaration
public DiscordChannel Channel { get; }
Property Value
Type | Description |
---|---|
DiscordChannel |
Remarks
This will be null
for an uncached channel, which will usually happen for when this event triggers on
DM channels in which no prior messages were received or sent.
Emoji
Gets the emoji used for this reaction.
Declaration
public DiscordEmoji Emoji { get; }
Property Value
Type | Description |
---|---|
DiscordEmoji |
Guild
Gets the guild in which the reaction was deleted.
Declaration
public DiscordGuild Guild { get; }
Property Value
Type | Description |
---|---|
DiscordGuild |
Message
Gets the message for which the update occurred.
Declaration
public DiscordMessage Message { get; }
Property Value
Type | Description |
---|---|
DiscordMessage |
User
Gets the users whose reaction was removed.
Declaration
public DiscordUser User { get; }
Property Value
Type | Description |
---|---|
DiscordUser |