Table of Contents

Method SendPaginatedResponseAsync

Namespace
DSharpPlus.Interactivity.Extensions
Assembly
DSharpPlus.Interactivity.dll

SendPaginatedResponseAsync(DiscordInteraction, bool, DiscordUser, IEnumerable<Page>, PaginationButtons, PaginationBehaviour?, ButtonPaginationBehavior?, bool, CancellationToken)

Sends a paginated message in response to an interaction.

Pass the interaction directly. Interactivity will ACK it.

public static Task SendPaginatedResponseAsync(this DiscordInteraction interaction, bool ephemeral, DiscordUser user, IEnumerable<Page> pages, PaginationButtons buttons = null, PaginationBehaviour? behaviour = null, ButtonPaginationBehavior? deletion = null, bool asEditResponse = false, CancellationToken token = default)

Parameters

interaction DiscordInteraction

The interaction to create a response to.

ephemeral bool

Whether the response should be ephemeral.

user DiscordUser

The user to listen for button presses from.

pages IEnumerable<Page>

The pages to paginate.

buttons PaginationButtons

Optional: custom buttons

behaviour PaginationBehaviour?

Pagination behaviour.

deletion ButtonPaginationBehavior?

Deletion behaviour

asEditResponse bool

If the response as edit of previous response.

token CancellationToken

A custom cancellation token that can be cancelled at any point.

Returns

Task