Chain.Where<T>(IDialog<T>, Func<T,Boolean>) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Une fois l’antécédent IDialog<TResult> terminé, évaluez le prédicat et décidez de continuer.
public static Microsoft.Bot.Builder.Dialogs.IDialog<T> Where<T> (this Microsoft.Bot.Builder.Dialogs.IDialog<T> antecedent, Func<T,bool> predicate);
static member Where : Microsoft.Bot.Builder.Dialogs.IDialog<'T> * Func<'T, bool> -> Microsoft.Bot.Builder.Dialogs.IDialog<'T>
<Extension()>
Public Function Where(Of T) (antecedent As IDialog(Of T), predicate As Func(Of T, Boolean)) As IDialog(Of T)
Paramètres de type
- T
Type de la boîte de dialogue d’antécédents.
Paramètres
- antecedent
- IDialog<T>
Boîte de dialogue IDialog<TResult>antérieure.
Retours
IDialog<T>
Résultat de l’antécédent IDialog<TResult> ou de son annulation, encapsulé dans un IDialog<TResult>.