Chain.ContinueWith<T,R> Methode
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Wenn das Antezedent IDialog<TResult> abgeschlossen ist, führt man die Fortsetzung aus, um das nächste IDialog<TResult>zu erzeugen.
public static Microsoft.Bot.Builder.Dialogs.IDialog<R> ContinueWith<T,R>(this Microsoft.Bot.Builder.Dialogs.IDialog<T> antecedent, Microsoft.Bot.Builder.Dialogs.Chain.Continuation<T,R> continuation);
static member ContinueWith : Microsoft.Bot.Builder.Dialogs.IDialog<'T> * Microsoft.Bot.Builder.Dialogs.Chain.Continuation<'T, 'R> -> Microsoft.Bot.Builder.Dialogs.IDialog<'R>
<Extension()>
Public Function ContinueWith(Of T, R) (antecedent As IDialog(Of T), continuation As Chain.Continuation(Of T, R)) As IDialog(Of R)
Typparameter
- T
Die Art des vorausgehenden Dialogs.
- R
Die Art des nächsten Dialogs.
Parameter
- antecedent
- IDialog<T>
Das Vorzededent IDialog<TResult>.
- continuation
- Chain.Continuation<T,R>
Die Fortsetzung zur nächsten .IDialog<TResult>
Gibt zurück
Das nächste IDialog<TResult>.