UnhandledExceptionEventHandler デリゲート
アセンブリ: Microsoft.VisualBasic (microsoft.visualbasic.dll 内)

Public Delegate Sub UnhandledExceptionEventHandler ( _ sender As Object, _ e As UnhandledExceptionEventArgs _ )
public delegate void UnhandledExceptionEventHandler ( Object sender, UnhandledExceptionEventArgs e )
public delegate void UnhandledExceptionEventHandler ( Object^ sender, UnhandledExceptionEventArgs^ e )
/** @delegate */ public delegate void UnhandledExceptionEventHandler ( Object sender, UnhandledExceptionEventArgs e )


My.Application.UnhandledException イベント

Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


UnhandledExceptionEventHandler デリゲート
アセンブリ: mscorlib (mscorlib.dll 内)

<SerializableAttribute> _ <ComVisibleAttribute(True)> _ Public Delegate Sub UnhandledExceptionEventHandler ( _ sender As Object, _ e As UnhandledExceptionEventArgs _ )
[SerializableAttribute] [ComVisibleAttribute(true)] public delegate void UnhandledExceptionEventHandler ( Object sender, UnhandledExceptionEventArgs e )
[SerializableAttribute] [ComVisibleAttribute(true)] public delegate void UnhandledExceptionEventHandler ( Object^ sender, UnhandledExceptionEventArgs^ e )
/** @delegate */ /** @attribute SerializableAttribute() */ /** @attribute ComVisibleAttribute(true) */ public delegate void UnhandledExceptionEventHandler ( Object sender, UnhandledExceptionEventArgs e )

UnhandledExceptionEventHandler は、アプリケーションを実行するためにシステムによって作成される既定のアプリケーション ドメインに対してだけ指定できます。アプリケーションで作成された AppDomain に UnhandledExceptionEventHandler を指定しても無効です。
UnhandledExceptionEventHandler デリゲートを作成する場合は、イベントを処理するメソッドを識別してください。イベント ハンドラをイベントに関連付けるには、デリゲートのインスタンスをイベントに追加します。デリゲートを削除しない限り、そのイベントが発生すると常にイベント ハンドラが呼び出されます。イベント ハンドラ デリゲートの詳細については、「イベントとデリゲート」を参照してください。

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


- UnhandledExceptionEventHandlerのページへのリンク