예제 #1
0
 // Reaction stuff
 public Task RemoveReactionAsync(ulong channelId, ulong messageId, ulong userId, IEmote emote, RequestOptions options = null)
 => MessageHelper.RemoveReactionAsync(channelId, messageId, userId, emote, this, options);
예제 #2
0
 /// <inheritdoc />
 public Task RemoveReactionAsync(IEmote emote, IUser user, RequestOptions options = null)
 => MessageHelper.RemoveReactionAsync(this.Channel.Id, this.Id, user.Id, emote, Discord, options);
예제 #3
0
 /// <inheritdoc />
 public Task RemoveReactionAsync(IEmote emote, ulong userId, RequestOptions options = null)
 => MessageHelper.RemoveReactionAsync(this, userId, emote, Discord, options);
예제 #4
0
 public Task RemoveReactionAsync(string emoji, IUser user, RequestOptions options = null)
 => MessageHelper.RemoveReactionAsync(this, user, emoji, Discord, options);