ASP.net核心中的依赖注入

时间:2016-08-28 13:59:23

标签: c# dependency-injection asp.net-core .net-core

是否有可能通过某种方式获得对IServiceProvider或某些可以解析依赖关系的类的引用来获得依赖?例如,当使用UseExceptionHandler处理异常以向客户端输出有意义的内容时,我还想做一些自定义日志记录以记录有关抛出的异常的一些内容。

例如,假设我的ASP.net核心项目的Configure类中的Startup方法中包含此代码:

app.UseExceptionHandler(
  builder =>
    {
      builder.Run(
        async context =>
          {
            context.Response.StatusCode = (int)HttpStatusCode.InternalServerError;
            context.Response.ContentType = "text/html";

            var error = context.Features.Get<IExceptionHandlerFeature>();
            if (error != null)
            {
              // TODO Log Exception.  Would like to do something like this:
              // var logger = ServiceProvider.Resolve<ILogger>();
              // logger.LogCritical("Unhandled Error :"error.Error.ToString());
              await context.Response.WriteAsync($"<h1>Error: {error.Error.Message}</h1>").ConfigureAwait(false);
            }
          });
    });

当我没有传递ILogger的构造函数时,如何获取ILogger的实例?

1 个答案:

答案 0 :(得分:3)

您可以访问ServiceProvider中的builder.ApplicationServices。从那里您可以获得ILoggerFactory的实例,然后为您的异常处理程序创建logger

app.UseExceptionHandler(
            builder =>
            {
                builder.Run(
                    async context =>
                    {
                        ...
                        var lf = builder.ApplicationServices.GetService<ILoggerFactory>();
                        var logger = lf.CreateLogger("myExceptionHandlerLogger");
                        logger.LogDebug("I am a debug message");
                        ...
                    });
            });