StartAsync Delegate

Definition

Encapsulate a method that represents the code to start a dialog.

public delegate System.Threading.Tasks.Task StartAsync(IDialogContext context);
type StartAsync = delegate of IDialogContext -> Task
Public Delegate Function StartAsync(context As IDialogContext) As Task 

Parameters

context
IDialogContext

The dialog context.

Return Value

A task that represents the start code for a dialog.

Applies to