Table of Contents

Method GetMessagesAfterAsync

Namespace
DSharpPlus.Entities
Assembly
DSharpPlus.dll

GetMessagesAfterAsync(ulong, int, CancellationToken)

Returns a list of messages after a certain message. This will execute one API request per 100 messages.

The amount of messages to fetch.Message to fetch after from.Cancels the enumeration before doing the next api request
public IAsyncEnumerable<DiscordMessage> GetMessagesAfterAsync(ulong after, int limit = 100, CancellationToken cancellationToken = default)

Parameters

after ulong
limit int
cancellationToken CancellationToken

Returns

IAsyncEnumerable<DiscordMessage>

Exceptions

UnauthorizedException

Thrown when the client does not have the AccessChannels permission.

NotFoundException

Thrown when the channel does not exist.

BadRequestException

Thrown when an invalid parameter was provided.

ServerErrorException

Thrown when Discord is unable to process the request.