Method EditFollowupAsync
- Namespace
- DSharpPlus.Commands
- Assembly
- DSharpPlus.Commands.dll
EditFollowupAsync(ulong, string)
Edits a followup message.
public virtual ValueTask<DiscordMessage> EditFollowupAsync(ulong messageId, string content)Parameters
- messageIdulong
- The id of the followup message to edit. 
- contentstring
- Content to send in the followup message. 
Returns
- ValueTask<DiscordMessage>
- The edited message. 
EditFollowupAsync(ulong, DiscordEmbed)
Edits a followup message.
public virtual ValueTask<DiscordMessage> EditFollowupAsync(ulong messageId, DiscordEmbed embed)Parameters
- messageIdulong
- The id of the followup message to edit. 
- embedDiscordEmbed
- Embed to send in the followup message. 
Returns
- ValueTask<DiscordMessage>
- The edited message. 
EditFollowupAsync(ulong, string, DiscordEmbed)
Edits a followup message.
public virtual ValueTask<DiscordMessage> EditFollowupAsync(ulong messageId, string content, DiscordEmbed embed)Parameters
- messageIdulong
- The id of the followup message to edit. 
- contentstring
- Content to send in the followup message. 
- embedDiscordEmbed
- Embed to send in the followup message. 
Returns
- ValueTask<DiscordMessage>
- The edited message. 
EditFollowupAsync(ulong, IDiscordMessageBuilder)
Edits a followup message.
public abstract ValueTask<DiscordMessage> EditFollowupAsync(ulong messageId, IDiscordMessageBuilder builder)Parameters
- messageIdulong
- The id of the followup message to edit. 
- builderIDiscordMessageBuilder
- The message builder. 
Returns
- ValueTask<DiscordMessage>
- The edited message.