共用方式為


WindowsFormsApplicationBase.OnUnhandledException 方法

定義

在衍生類別中覆寫時,允許在應用程式中發生未處理的例外狀況時執行程式碼。

protected:
 virtual bool OnUnhandledException(Microsoft::VisualBasic::ApplicationServices::UnhandledExceptionEventArgs ^ e);
protected virtual bool OnUnhandledException (Microsoft.VisualBasic.ApplicationServices.UnhandledExceptionEventArgs e);
abstract member OnUnhandledException : Microsoft.VisualBasic.ApplicationServices.UnhandledExceptionEventArgs -> bool
override this.OnUnhandledException : Microsoft.VisualBasic.ApplicationServices.UnhandledExceptionEventArgs -> bool
Protected Overridable Function OnUnhandledException (e As UnhandledExceptionEventArgs) As Boolean

參數

e
UnhandledExceptionEventArgs

事件的資料。

傳回

Boolean,指出是否引發 UnhandledException 事件。

備註

根據預設,只要調試程式未附加且使用者正在處理UnhandledException事件,這個方法就會引發UnhandledException事件。 事件處理程式可以設定 ExitApplication 屬性。 如果 為 ExitApplicationFalse,或如果未處理事件,應用程式會在從例外狀況處理程式傳回時結束。 否則,會將應用程式的控制權傳回至 Windows Forms 訊息迴圈。

適用於

另請參閱