WindowsFormsApplicationBase.OnUnhandledException Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
En cas de substitution dans une classe dérivée, permet au code de s'exécuter lorsqu'une exception non gérée se produit dans l'application.
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
Paramètres
Données de l'événement.
Retours
Boolean qui indique si l'événement UnhandledException a été déclenché.
Remarques
Par défaut, cette méthode déclenche l’événement UnhandledException tant qu’un débogueur n’est pas attaché et que l’utilisateur gère l’événement UnhandledException
. Le gestionnaire d’événements peut définir la ExitApplication propriété . Si ExitApplication est False
ou si l’événement n’est pas géré, l’application se ferme au retour du gestionnaire d’exceptions. Sinon, le contrôle de l’application est retourné à la boucle de message Windows Forms.