Ejemplo n.º 1
0
 /// <summary>
 /// Modifies this text channel's settings.
 /// <para>Requires <see cref="DiscordPermission.ManageChannels"/>.</para>
 /// </summary>
 /// <param name="options">A set of options to modify the channel with</param>
 /// <returns>Returns the updated text channel.</returns>
 /// <exception cref="ArgumentNullException"></exception>
 /// <exception cref="DiscordHttpApiException"></exception>
 public Task <DiscordGuildTextChannel> Modify(GuildTextChannelOptions options)
 {
     return(http.ModifyTextChannel(Id, options));
 }