UnhandledExceptionEventHandler 委托
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
表示用来处理 My.Application.UnhandledException
事件的方法。
public delegate void UnhandledExceptionEventHandler(System::Object ^ sender, UnhandledExceptionEventArgs ^ e);
public delegate void UnhandledExceptionEventHandler(object sender, UnhandledExceptionEventArgs e);
type UnhandledExceptionEventHandler = delegate of obj * UnhandledExceptionEventArgs -> unit
Public Delegate Sub UnhandledExceptionEventHandler(sender As Object, e As UnhandledExceptionEventArgs)
参数
- sender
- Object
事件源。
包含事件数据的 UnhandledExceptionEventArgs 对象。
示例
WindowsFormsApplicationBase.UnhandledException
注解
在 Visual Basic 中,无需显式使用此委托。 有关详细信息,请参阅 UnhandledException。
扩展方法
GetMethodInfo(Delegate) |
获取指示指定委托表示的方法的对象。 |