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 der Vorgänger IDialog<TResult> abgeschlossen ist, führen Sie die Fortsetzung aus, um die 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
Der Typ des Vorgängerdialogfelds.
- R
Der Typ des nächsten Dialogfelds.
Parameter
- antecedent
- IDialog<T>
Der vorgänger IDialog<TResult>.
- continuation
- Chain.Continuation<T,R>
Die Fortsetzung, um die nächste IDialog<TResult>zu erzeugen.
Gibt zurück
Der nächste IDialog<TResult>.