DispatcherUnhandledExceptionFilterEventHandler Delegat
Definition
Stellt die Methode zur Behandlung des UnhandledExceptionFilter-Ereignisses dar.Represents the method that will handle the UnhandledExceptionFilter event.
public delegate void DispatcherUnhandledExceptionFilterEventHandler(System::Object ^ sender, DispatcherUnhandledExceptionFilterEventArgs ^ e);
public delegate void DispatcherUnhandledExceptionFilterEventHandler(object sender, DispatcherUnhandledExceptionFilterEventArgs e);
type DispatcherUnhandledExceptionFilterEventHandler = delegate of obj * DispatcherUnhandledExceptionFilterEventArgs -> unit
Public Delegate Sub DispatcherUnhandledExceptionFilterEventHandler(sender As Object, e As DispatcherUnhandledExceptionFilterEventArgs)
Parameter
- sender
- Object
Die Quelle des Ereignisses.The source of the event.
Die Ereignisdaten.The event data.
- Vererbung
Hinweise
Das UnhandledExceptionFilter Ereignis tritt auf, wenn der Code, der Dispatcher die Ausführung von ausführt, eine Ausnahme auslöst, die nicht behandelt wird.The UnhandledExceptionFilter event occurs when code executing by way of the Dispatcher throws an exception that is not handled.
Das UnhandledExceptionFilter -Ereignis bietet die Möglichkeit, das UnhandledException -Ereignis nicht zu erhöhen.The UnhandledExceptionFilter event provides a means to not raise the UnhandledException event. Das UnhandledExceptionFilter -Ereignis wird zuerst ausgelöst, und RequestCatch Wenn false
für DispatcherUnhandledExceptionFilterEventArgs auf festgelegt ist, UnhandledException wird das-Ereignis nicht ausgelöst.The UnhandledExceptionFilter event is raised first, and If RequestCatch on the DispatcherUnhandledExceptionFilterEventArgs is set to false
, the UnhandledException event will not be raised.
Erweiterungsmethoden
GetMethodInfo(Delegate) |
Ruft ein Objekt ab, das die Methode darstellt, die vom angegebenen Delegaten dargestellt wird.Gets an object that represents the method represented by the specified delegate. |