当前位置: 首页>>代码示例>>C#>>正文


C# ApplicationUnhandledExceptionEventArgs.ToString方法代码示例

本文整理汇总了C#中System.Windows.ApplicationUnhandledExceptionEventArgs.ToString方法的典型用法代码示例。如果您正苦于以下问题:C# ApplicationUnhandledExceptionEventArgs.ToString方法的具体用法?C# ApplicationUnhandledExceptionEventArgs.ToString怎么用?C# ApplicationUnhandledExceptionEventArgs.ToString使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在System.Windows.ApplicationUnhandledExceptionEventArgs的用法示例。


在下文中一共展示了ApplicationUnhandledExceptionEventArgs.ToString方法的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: Application_UnhandledException

		private static void Application_UnhandledException(object sender, ApplicationUnhandledExceptionEventArgs e)
		{
			if (!Debugger.IsAttached)
			{
				MessageBox.Show(e.ToString());
				e.Handled = true;
				Deployment.Current.Dispatcher.BeginInvoke(delegate { ReportErrorToDOM(e); });
			}
		}
开发者ID:bvangrinsven,项目名称:db4o-net,代码行数:9,代码来源:App.xaml.cs

示例2: UnhandledException

 /// Code to execute on Unhandled Exceptions
 private static void UnhandledException(object sender, ApplicationUnhandledExceptionEventArgs e)
 {
     if (Debugger.IsAttached)
     {
         // An unhandled exception has occurred; break into the debugger
         Debugger.Break();
         Debugger.Log(1, "exception", "UnhandledException e=" + e.ToString());
     }
 }
开发者ID:SoftwareFactoryUPC,项目名称:ProjectTemplates,代码行数:10,代码来源:ScheduledAgent.cs

示例3: Application_UnhandledException

        private void Application_UnhandledException(object sender, ApplicationUnhandledExceptionEventArgs e)
        {
            MessageBox.Show(e.ToString());
            // If the app is running outside of the debugger then report the exception using
            // the browser's exception mechanism. On IE this will display it a yellow alert 
            // icon in the status bar and Firefox will display a script error.
            if (!System.Diagnostics.Debugger.IsAttached)
            {

                // NOTE: This will allow the application to continue running after an exception has been thrown
                // but not handled. 
                // For production applications this error handling should be replaced with something that will 
                // report the error to the website and stop the application.
                e.Handled = true;
                Deployment.Current.Dispatcher.BeginInvoke(delegate { ReportErrorToDOM(e); });
            }
        }
开发者ID:TeamnetGroup,项目名称:Redis.SilverlightClient,代码行数:17,代码来源:App.xaml.cs

示例4: Application_UnhandledException

 // Code to execute on Unhandled Exceptions
 private void Application_UnhandledException(object sender, ApplicationUnhandledExceptionEventArgs e)
 {
     if (Debugger.IsAttached)
     {
         // An unhandled exception has occurred; break into the debugger
         Debug.WriteLine(e.ToString());
         Debugger.Break();
     }
 }
开发者ID:NewETown,项目名称:WP8.Re,代码行数:10,代码来源:App.xaml.cs

示例5: Application_UnhandledException

        // Code to execute on Unhandled Exceptions
        private void Application_UnhandledException(object sender, ApplicationUnhandledExceptionEventArgs e)
        {
            if (System.Diagnostics.Debugger.IsAttached)
            {
                // An unhandled exception has occurred; break into the debugger
                System.Diagnostics.Debugger.Break();
            }

            MessageBox.Show(e.ToString() + e.ExceptionObject.Message);
        }
开发者ID:arvinbb,项目名称:Readr7,代码行数:11,代码来源:App.xaml.cs

示例6: UnhandledException

 private static void UnhandledException(object sender, ApplicationUnhandledExceptionEventArgs e)
 {
     Debug.WriteLine(e.ToString());
 }
开发者ID:MrFlark,项目名称:geotracker-app-csharp,代码行数:4,代码来源:ScheduledAgent.cs

示例7: Application_UnhandledException

        // Code to execute on Unhandled Exceptions
        private void Application_UnhandledException(object sender, ApplicationUnhandledExceptionEventArgs e)
        {
            if (System.Diagnostics.Debugger.IsAttached)
            {
                // An unhandled exception has occurred; break into the debugger
                System.Diagnostics.Debugger.Break();

                Deployment.Current.Dispatcher.BeginInvoke(() => MessageBox.Show(e.ToString()));
            }
            Deployment.Current.Dispatcher.BeginInvoke(() => MessageBox.Show(e.ToString()));
        }
开发者ID:peterdocter,项目名称:hydra,代码行数:12,代码来源:App.xaml.cs

示例8: Application_UnhandledException

 // Código que se ejecuta ante excepciones no controladas
 private void Application_UnhandledException(object sender, ApplicationUnhandledExceptionEventArgs e)
 {
     if (System.Diagnostics.Debugger.IsAttached)
     {
         // Se ha producido una excepción no controlada; interrumpir depurador
         Console.WriteLine(e.ToString());
         System.Diagnostics.Debugger.Break();
     }
 }
开发者ID:Alegege,项目名称:PayMe,代码行数:10,代码来源:App.xaml.cs

示例9: Application_UnhandledException

 // Code, der bei nicht behandelten Ausnahmen ausgeführt wird
 private void Application_UnhandledException(object sender, ApplicationUnhandledExceptionEventArgs e)
 {
     if (Debugger.IsAttached)
     {
         // Eine nicht behandelte Ausnahme ist aufgetreten. Unterbrechen und Debugger öffnen
         MessageBox.Show(e.ToString());
         Debugger.Break();
     }
 }
开发者ID:famoser,项目名称:Gymoberwil,代码行数:10,代码来源:App.xaml.cs


注:本文中的System.Windows.ApplicationUnhandledExceptionEventArgs.ToString方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。