TeamsInfo.GetPagedFailedEntriesAsync Method

Definition

Gets the failed entries of a batch operation.

public static System.Threading.Tasks.Task<Microsoft.Bot.Schema.Teams.BatchFailedEntriesResponse> GetPagedFailedEntriesAsync (Microsoft.Bot.Builder.ITurnContext turnContext, string operationId, string continuationToken = default, System.Threading.CancellationToken cancellationToken = default);
static member GetPagedFailedEntriesAsync : Microsoft.Bot.Builder.ITurnContext * string * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Bot.Schema.Teams.BatchFailedEntriesResponse>
Public Shared Function GetPagedFailedEntriesAsync (turnContext As ITurnContext, operationId As String, Optional continuationToken As String = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task(Of BatchFailedEntriesResponse)

Parameters

turnContext
ITurnContext

The turn context.

operationId
String

The operationId to get the failed entries of.

continuationToken
String

The continuation token.

cancellationToken
CancellationToken

The cancellation token.

Returns

The list of failed entries of the operation.

Applies to