Ejemplo n.º 1
0
 /// <summary>
 /// Creates a text or voice channel for this guild.
 /// <para>Requires <see cref="DiscordPermission.ManageChannels"/>.</para>
 /// </summary>
 /// <exception cref="ArgumentNullException"></exception>
 /// <exception cref="DiscordHttpApiException"></exception>
 public Task <DiscordGuildChannel> CreateChannel(CreateGuildChannelOptions options)
 {
     return(http.CreateGuildChannel(Id, options));
 }