次の方法で共有


Chain.Do<T> メソッド

定義

が完了した後に副作用を IDialog<TResult> 実行します。

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

型パラメーター

T

ダイアログの種類。

パラメーター

antecedent
IDialog<T>

継続する IDialog<TResult>

callback
Func<IBotContext,IAwaitable<T>,Task>

コールバック メソッド。

戻り値

IDialog<T>

継続するダイアログ。

適用対象