Del via


AdaptiveDialog.ContinueActionsAsync Method

Definition

Waits for pending actions to complete and moves on to OnEndOfActions.

protected System.Threading.Tasks.Task<Microsoft.Bot.Builder.Dialogs.DialogTurnResult> ContinueActionsAsync (Microsoft.Bot.Builder.Dialogs.DialogContext dc, object options, System.Threading.CancellationToken cancellationToken);
member this.ContinueActionsAsync : Microsoft.Bot.Builder.Dialogs.DialogContext * obj * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Bot.Builder.Dialogs.DialogTurnResult>
Protected Function ContinueActionsAsync (dc As DialogContext, options As Object, cancellationToken As CancellationToken) As Task(Of DialogTurnResult)

Parameters

dc
DialogContext

The DialogContext for the current turn of conversation.

options
Object

Options used in evaluation.

cancellationToken
CancellationToken

Optional, the CancellationToken that can be used by other objects or threads to receive notice of cancellation.

Returns

A Task representation of DialogTurnResult.

Applies to