Table of Contents

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 string

Content 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 DiscordEmbed

Embed 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 string

Content to send in the followup message.

embed DiscordEmbed

Embed 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 IDiscordMessageBuilder

The followup message to be sent.

Returns

ValueTask<DiscordMessage>

The created message.