亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么為WPF框架Prism注冊Nlog日志服務

發布時間:2022-02-15 11:18:34 來源:億速云 閱讀:412 作者:小新 欄目:開發技術

這篇文章主要為大家展示了“怎么為WPF框架Prism注冊Nlog日志服務”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“怎么為WPF框架Prism注冊Nlog日志服務”這篇文章吧。

無論是Nlog還是Serilog, 它們都提供了如何快速在各類應用程序當中的快速使用方法。

盡管,你現在無論是在WPF或者ASP.NET Core當中, 都可以使用ServiceCollection來做到著一點, 因為日志框架都提供了IServiceCollection的擴展。

但是, 如果現在你使用的是Prism 8.0的應用程序, Prism提供了多種容器的支持, 例如:DryIoc或者Unity, 這個時候我們如果現在這個基礎上實現依賴注入,首先我們需要修改Prism當中創建容器的默認實現, 在其中將ServiceCollection追加到容器當中。

本文的示例主要以DryIoc容器為示例:

這里會主要用到幾個相關的依賴:

  • Microsoft.Extensions.DependencyInjection;

  • Microsoft.Extensions.Logging;

  • DryIoc.Microsoft.DependencyInjection;

  • NLog.Extensions.Logging;

為此, 需要添加一些相關的包,如下所示:

怎么為WPF框架Prism注冊Nlog日志服務

Nlog.Config: 主要配置Nlog的執行配置,規則

NLog.Extensions.Logging: 擴展方法, 用于注冊服務

在App.xaml.cs代碼,如下所示:

        protected override IContainerExtension CreateContainerExtension()
        {
            var serviceCollection = new ServiceCollection();
            serviceCollection.AddLogging(configure =>
            {
                configure.ClearProviders();
                configure.SetMinimumLevel(LogLevel.Trace);
                configure.AddNLog();
            });

            return new DryIocContainerExtension(new Container(CreateContainerRules())
                .WithDependencyInjectionAdapter(serviceCollection));
        }

窗口中,添加測試代碼:

    public partial class MainWindow : Window
    {
        private readonly Logger<MainWindow> logger;

        public MainWindow(Logger<MainWindow> logger)
        {
            InitializeComponent();
            this.logger = logger;
        }

        private void Button_Click(object sender, RoutedEventArgs e)
        {
            logger.LogDebug("Hello");
        }
    }

注意: 配置Nlog需要修改Nlog.Config配置文件生效,可參考Github文檔, 下面為測試配置:

<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd"
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xsi:schemaLocation="http://www.nlog-project.org/schemas/NLog.xsd NLog.xsd"
      autoReload="true"
      throwExceptions="false"
      internalLogLevel="Off" internalLogFile="c:\temp\nlog-internal.log">
  
  <targets>
    <target xsi:type="File" name="f" fileName="${basedir}/logs/${shortdate}.log"
            layout="${longdate}|${event-properties:item=EventId_Id:whenEmpty=0}|${uppercase:${level}}|${logger}|${message} ${exception:format=tostring}"  />
  </targets>

  <rules> 
    <logger name="*" minlevel="Debug" writeTo="f" /> 
  </rules>
</nlog>

最終輸出內容,如下所示:

2021-08-19 16:32:00.5558|0|DEBUG|wpflogapp.MainWindow|Hello 
2021-08-19 16:32:00.7049|0|DEBUG|wpflogapp.MainWindow|Hello 
2021-08-19 16:32:00.8828|0|DEBUG|wpflogapp.MainWindow|Hello 
2021-08-19 16:32:01.0647|0|DEBUG|wpflogapp.MainWindow|Hello 
2021-08-19 16:32:01.2608|0|DEBUG|wpflogapp.MainWindow|Hello

完整App.xaml.cs文件代碼如下:

    public partial class App : PrismApplication
    {
        protected override Window CreateShell()
        { 
            return Container.Resolve<MainWindow>();
        } 
        protected override void RegisterTypes(IContainerRegistry containerRegistry)
        { } 
        protected override IContainerExtension CreateContainerExtension()
        {
            var serviceCollection = new ServiceCollection();
            serviceCollection.AddLogging(configure =>
            {
                configure.ClearProviders();
                configure.SetMinimumLevel(LogLevel.Trace);
                configure.AddNLog();
            });

            return new DryIocContainerExtension(new Container(CreateContainerRules())
                .WithDependencyInjectionAdapter(serviceCollection));
        }
    }

以上是“怎么為WPF框架Prism注冊Nlog日志服務”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

石棉县| 宣化县| 宁海县| 河津市| 宝应县| 长治县| 连云港市| 房山区| 包头市| 革吉县| 株洲县| 三河市| 古蔺县| 新和县| 齐河县| 安多县| 西盟| 甘孜县| 叶城县| 翼城县| 乐清市| 沈阳市| 社旗县| 新宁县| 合山市| 武义县| 如皋市| 山阴县| 华阴市| 道孚县| 岑溪市| 兖州市| 安乡县| 嫩江县| 灵寿县| 鹤峰县| 灌南县| 措勤县| 东至县| 房产| 文登市|