コード例 #1
0
 /// <summary>
 /// Gets a channel's webhooks
 /// </summary>
 /// <param name="channelId">ID of the channel</param>
 public static IReadOnlyList <DiscordWebhook> GetChannelWebhooks(this DiscordClient client, ulong channelId)
 {
     return(client.GetChannelWebhooksAsync(channelId).Result);
 }