Chain.DefaultIfException 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.
Surcharges
DefaultIfException<T,E>(IDialog<T>) |
Une fois l’antécédent IDialog<TResult> terminé, arrêtez la propagation d’une exception de |
DefaultIfException<T>(IDialog<T>) |
Une fois l’antécédent IDialog<TResult> terminé, arrêtez la propagation de l’exception. |
DefaultIfException<T,E>(IDialog<T>)
- Source:
- Chain.cs
Une fois l’antécédent IDialog<TResult> terminé, arrêtez la propagation d’une exception de E
.
public static Microsoft.Bot.Builder.Dialogs.IDialog<T> DefaultIfException<T,E> (this Microsoft.Bot.Builder.Dialogs.IDialog<T> antecedent) where E : Exception;
static member DefaultIfException : Microsoft.Bot.Builder.Dialogs.IDialog<'T> -> Microsoft.Bot.Builder.Dialogs.IDialog<'T> (requires 'E :> Exception)
<Extension()>
Public Function DefaultIfException(Of T, E) (antecedent As IDialog(Of T)) As IDialog(Of T)
Paramètres de type
- T
Type retourné par la boîte de dialogue d’antécédents.
- E
Type d’exception à avaler.
Paramètres
- antecedent
- IDialog<T>
Boîte de dialogue IDialog<TResult>antérieure.
Retours
Valeur par défaut de s’il T
existe une exception de type E
.
S’applique à
DefaultIfException<T>(IDialog<T>)
- Source:
- Chain.cs
Une fois l’antécédent IDialog<TResult> terminé, arrêtez la propagation de l’exception.
public static Microsoft.Bot.Builder.Dialogs.IDialog<T> DefaultIfException<T> (this Microsoft.Bot.Builder.Dialogs.IDialog<T> antecedent);
static member DefaultIfException : Microsoft.Bot.Builder.Dialogs.IDialog<'T> -> Microsoft.Bot.Builder.Dialogs.IDialog<'T>
<Extension()>
Public Function DefaultIfException(Of T) (antecedent As IDialog(Of T)) As IDialog(Of T)
Paramètres de type
- T
Type retourné par la boîte de dialogue d’antécédents.
Paramètres
- antecedent
- IDialog<T>
Boîte de dialogue IDialog<TResult>antérieure.
Retours
Valeur par défaut de s’il T
existe une exception.