Method FollowupAsync
- Namespace
 - DSharpPlus.Commands
 
- Assembly
 - DSharpPlus.Commands.dll
 
FollowupAsync(string)
Creates a followup message to the interaction.
public virtual ValueTask<DiscordMessage> FollowupAsync(string content)
Parameters
contentstringContent to send in the followup message.
Returns
- ValueTask<DiscordMessage>
 The created message.
FollowupAsync(DiscordEmbed)
Creates a followup message to the interaction.
public virtual ValueTask<DiscordMessage> FollowupAsync(DiscordEmbed embed)
Parameters
embedDiscordEmbedEmbed to send in the followup message.
Returns
- ValueTask<DiscordMessage>
 The created message.
FollowupAsync(string, DiscordEmbed)
Creates a followup message to the interaction.
public virtual ValueTask<DiscordMessage> FollowupAsync(string content, DiscordEmbed embed)
Parameters
contentstringContent to send in the followup message.
embedDiscordEmbedEmbed to send in the followup message.
Returns
- ValueTask<DiscordMessage>
 The created message.
FollowupAsync(IDiscordMessageBuilder)
Creates a followup message to the interaction.
public abstract ValueTask<DiscordMessage> FollowupAsync(IDiscordMessageBuilder builder)
Parameters
builderIDiscordMessageBuilderThe followup message to be sent.
Returns
- ValueTask<DiscordMessage>
 The created message.