コード例 #1
0
 /// <inheritdoc />
 public IAsyncEnumerable <IReadOnlyCollection <IUser> > GetReactionUsersAsync(IEmote emote, int limit, RequestOptions options = null)
 => MessageHelper.GetReactionUsersAsync(this, emote, limit, Discord, options);
コード例 #2
0
 public Task <IReadOnlyCollection <IUser> > GetReactionUsersAsync(string emoji, int limit = 100, ulong?afterUserId = null, RequestOptions options = null)
 => MessageHelper.GetReactionUsersAsync(this, emoji, x => { x.Limit = limit; x.AfterUserId = afterUserId ?? Optional.Create <ulong>(); }, Discord, options);