DispatcherUnhandledExceptionEventHandler 委托

定义

表示用来处理 UnhandledException 事件的方法。

public delegate void DispatcherUnhandledExceptionEventHandler(System::Object ^ sender, DispatcherUnhandledExceptionEventArgs ^ e);
public delegate void DispatcherUnhandledExceptionEventHandler(object sender, DispatcherUnhandledExceptionEventArgs e);
type DispatcherUnhandledExceptionEventHandler = delegate of obj * DispatcherUnhandledExceptionEventArgs -> unit
Public Delegate Sub DispatcherUnhandledExceptionEventHandler(sender As Object, e As DispatcherUnhandledExceptionEventArgs)

参数

sender
Object

事件源。

注解

UnhandledException通过 执行Dispatcher的代码引发未处理的异常时,会发生 该事件。

事件 UnhandledExceptionFilter 提供了一种不引发事件 UnhandledException 的方法。 首先 UnhandledExceptionFilter 引发 事件,如果 RequestCatch 上的 DispatcherUnhandledExceptionFilterEventArgs 设置为 falseUnhandledException 则不会引发事件。

扩展方法

GetMethodInfo(Delegate)

获取指示指定委托表示的方法的对象。

适用于

另请参阅