DispatcherUnhandledExceptionEventHandler 委托
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
表示用来处理 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 设置为 false
, UnhandledException 则不会引发事件。
扩展方法
GetMethodInfo(Delegate) |
获取指示指定委托表示的方法的对象。 |