UnhandledExceptionEventHandler 委托

定义

表示用来处理 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

事件源。

e
UnhandledExceptionEventArgs

包含事件数据的 UnhandledExceptionEventArgs 对象。

示例

WindowsFormsApplicationBase.UnhandledException

Visual Basic 应用程序模型概述

注解

在 Visual Basic 中,无需显式使用此委托。 有关详细信息,请参阅 UnhandledException

扩展方法

GetMethodInfo(Delegate)

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

适用于