Dispatcher.UnhandledExceptionFilter Événement

Définition

Se produit lorsqu'une exception de thread est levée et non interceptée pendant l'exécution d'un délégué au moyen de Invoke ou de BeginInvoke lors de l'étape de filtrage.

public:
 event System::Windows::Threading::DispatcherUnhandledExceptionFilterEventHandler ^ UnhandledExceptionFilter;
[add: System.Security.SecurityCritical]
[remove: System.Security.SecurityCritical]
public event System.Windows.Threading.DispatcherUnhandledExceptionFilterEventHandler UnhandledExceptionFilter;
public event System.Windows.Threading.DispatcherUnhandledExceptionFilterEventHandler UnhandledExceptionFilter;
[<add: System.Security.SecurityCritical>]
[<remove: System.Security.SecurityCritical>]
member this.UnhandledExceptionFilter : System.Windows.Threading.DispatcherUnhandledExceptionFilterEventHandler 
member this.UnhandledExceptionFilter : System.Windows.Threading.DispatcherUnhandledExceptionFilterEventHandler 
Public Custom Event UnhandledExceptionFilter As DispatcherUnhandledExceptionFilterEventHandler 

Type d'événement

Attributs

Remarques

Cet événement est déclenché pendant l’étape de filtre pour une exception qui est déclenchée pendant l’exécution d’un délégué par le biais de Invoke ou BeginInvoke et qui n’est pas interceptée.

La pile des appels n’est pas dissociée à ce stade (exception de première chance).

Les gestionnaires d’événements pour cet événement doivent être écrits avec précaution afin d’éviter de créer des exceptions secondaires et d’intercepter toutes les exceptions qui se produisent. Il est recommandé d’éviter d’allouer de la mémoire ou d’effectuer des opérations gourmandes en ressources dans le gestionnaire.

L’événement UnhandledExceptionFilter fournit un moyen de ne pas déclencher l’événement UnhandledException . L’événement UnhandledExceptionFilter est déclenché en premier, et si RequestCatch sur le DispatcherUnhandledExceptionFilterEventArgs est défini falsesur , l’événement UnhandledException ne sera pas déclenché.

S’applique à

Voir aussi