zoukankan      html  css  js  c++  java
  • wpf 全局异常捕获处理

    /// <summary>
        /// App.xaml 的交互逻辑
        /// </summary>
        public partial class App : Application
        {
            private const string Tag = nameof(App);
            public App() 
            {
                Dispatcher.UnhandledException += Dispatcher_UnhandledException;
                DispatcherUnhandledException += App_DispatcherUnhandledException;
                AppDomain.CurrentDomain.UnhandledException += CurrentDomain_UnhandledException;
                
            }
    
            private void Dispatcher_UnhandledException(object sender, System.Windows.Threading.DispatcherUnhandledExceptionEventArgs e)
            {
                Logger.Fatal(Tag,"",e.Exception);
            }
    
            private void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e)
            {
                var exception = e.ExceptionObject as Exception;
                var terminatingMessage = e.IsTerminating ? " The application is terminating." : string.Empty;
                var exceptionMessage = exception?.Message ?? "An unmanaged exception occured.";
                var message = string.Concat(exceptionMessage, terminatingMessage);
                Logger.Fatal(Tag, message, exception);
            }
    
            private void App_DispatcherUnhandledException(object sender, System.Windows.Threading.DispatcherUnhandledExceptionEventArgs e)
            {
                Logger.Fatal(Tag, "", e.Exception);
            }
        }
    --------------------------------------------------------------------------------------------------------------------------------------------------

  • 相关阅读:
    条件语句实例
    数据类型
    C#与.NET概述
    c#循环
    语句
    数组

    英文文献中的数学符号
    如何计算协方差、 协方差矩阵 、 相关系数 、 马氏距离
    opengl 笔记
  • 原文地址:https://www.cnblogs.com/bruce1992/p/14124776.html
Copyright © 2011-2022 走看看