コード例 #1
0
 /// <summary>
 /// Gets a list of members in this guild.
 /// This method is paged, and cannot always return every member at once.
 /// </summary>
 /// <param name="limit">Max number of members to return (1-1000).</param>
 /// <param name="after">The highest user ID in the previous page.</param>
 /// <exception cref="DiscordHttpApiException"></exception>
 public Task <IReadOnlyList <DiscordGuildMember> > ListGuildMembers(int?limit = null, Snowflake?after = null)
 {
     return(http.ListGuildMembers(Id, limit, after));
 }