Share via


DialogContext.ContinueDialogAsync(CancellationToken) Method

Definition

Continues execution of the active dialog, if there is one, by passing the current DialogContext to the active dialog's ContinueDialogAsync(DialogContext, CancellationToken) method.

public System.Threading.Tasks.Task<Microsoft.Bot.Builder.Dialogs.DialogTurnResult> ContinueDialogAsync (System.Threading.CancellationToken cancellationToken = default);
member this.ContinueDialogAsync : System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Bot.Builder.Dialogs.DialogTurnResult>
Public Function ContinueDialogAsync (Optional cancellationToken As CancellationToken = Nothing) As Task(Of DialogTurnResult)

Parameters

cancellationToken
CancellationToken

A cancellation token that can be used by other objects or threads to receive notice of cancellation.

Returns

A task that represents the work queued to execute.

Remarks

If the task is successful, the result indicates whether the dialog is still active after the turn has been processed by the dialog.

Check the Responded property after the call completes to determine if the active dialog sent a reply message to the user.

Applies to

See also