示例#1
0
 /// <summary>
 /// Gets all users who reacted with the specified emoji to this message.
 /// </summary>
 /// <exception cref="ArgumentNullException"></exception>
 /// <exception cref="DiscordHttpApiException"></exception>
 public Task <IReadOnlyList <DiscordUser> > GetReactions(DiscordReactionEmoji reactionEmoji)
 {
     return(http.GetReactions(ChannelId, Id, reactionEmoji));
 }