Partager via


Chain.Then<T,R> Méthode

Définition

Exécutez une action une fois la IDialog<TResult> commande terminée.

public static Microsoft.Bot.Builder.Dialogs.IDialog<R> Then<T,R> (this Microsoft.Bot.Builder.Dialogs.IDialog<T> Antecedent, Func<Microsoft.Bot.Builder.Dialogs.IBotContext,Microsoft.Bot.Builder.Dialogs.IAwaitable<T>,System.Threading.Tasks.Task<R>> Action);
static member Then : Microsoft.Bot.Builder.Dialogs.IDialog<'T> * Func<Microsoft.Bot.Builder.Dialogs.IBotContext, Microsoft.Bot.Builder.Dialogs.IAwaitable<'T>, System.Threading.Tasks.Task<'R>> -> Microsoft.Bot.Builder.Dialogs.IDialog<'R>
<Extension()>
Public Function Then(Of T, R) (Antecedent As IDialog(Of T), Action As Func(Of IBotContext, IAwaitable(Of T), Task(Of R))) As IDialog(Of R)

Paramètres de type

T

Type de la boîte de dialogue.

R

Ils type retournés par action.

Paramètres

Antecedent
IDialog<T>

IDialog<TResult>Antécédent.

Action
Func<IBotContext,IAwaitable<T>,Task<R>>

Action qui sera appelée une fois la boîte de dialogue antérieure terminée.

Retours

IDialog<R>

Boîte de dialogue antérieure.

S’applique à