Share via


ITemplate<T>.BindAsync(DialogContext, Object, CancellationToken) Method

Definition

Given the turn context bind to the data to create the object of type T.

public System.Threading.Tasks.Task<T> BindAsync (Microsoft.Bot.Builder.Dialogs.DialogContext dialogContext, object data = default, System.Threading.CancellationToken cancellationToken = default);
abstract member BindAsync : Microsoft.Bot.Builder.Dialogs.DialogContext * obj * System.Threading.CancellationToken -> System.Threading.Tasks.Task<'T>
Public Function BindAsync (dialogContext As DialogContext, Optional data As Object = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task(Of T)

Parameters

dialogContext
DialogContext

dialogContext.

data
Object

data to bind to. If Null, then dc.State will be used.

cancellationToken
CancellationToken

the CancellationToken for this task.

Returns

Task<T>

instance of T.

Applies to