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
content
stringContent 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
embed
DiscordEmbedEmbed 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
content
stringContent to send in the followup message.
embed
DiscordEmbedEmbed 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
builder
IDiscordMessageBuilderThe followup message to be sent.
Returns
- ValueTask<DiscordMessage>
The created message.