首页 > 后端开发 > C#.Net教程 > 如何处理中间件 C# Asp.net Core 中的错误?

如何处理中间件 C# Asp.net Core 中的错误?

王林
发布: 2023-09-02 11:01:12
转载
864 人浏览过

如何处理中间件 C# Asp.net Core 中的错误?

创建一个名为 CustomExceptionMiddleware 的新文件夹和一个类 ExceptionMiddleware.cs 位于其中。

我们需要做的第一件事是注册 IloggerManager 服务并 通过依赖注入实现RequestDelegate。

RequestDeleagate类型的_next参数是一个函数委托,可以处理 我们的HTTP请求。

在注册过程之后,我们需要创建InvokeAsync()方法 RequestDelegate无法处理没有它的请求。

_next委托应该处理我们控制器的请求和Get操作 应该生成一个成功的响应。但是如果请求失败(而且它确实失败了, 因为我们正在强制异常),

我们的中间件将触发 catch 块并调用 HandleExceptionAsync 方法。

public class ExceptionMiddleware{
   private readonly RequestDelegate _next;
   private readonly ILoggerManager _logger;
   public ExceptionMiddleware(RequestDelegate next, ILoggerManager logger){
      _logger = logger;
      _next = next;
   }
   public async Task InvokeAsync(HttpContext httpContext){
      try{
            await _next(httpContext);
      }
      catch (Exception ex){
         _logger.LogError($"Something went wrong: {ex}");
         await HandleExceptionAsync(httpContext, ex);
      }
   }
   private Task HandleExceptionAsync(HttpContext context, Exception exception){
      context.Response.ContentType = "application/json";
      context.Response.StatusCode = (int)HttpStatusCode.InternalServerError;
      return context.Response.WriteAsync(new ErrorDetails(){
         StatusCode = context.Response.StatusCode,
         Message = "Internal Server Error from the custom middleware."
      }.ToString());
   }
}
登录后复制

用另一个静态方法修改我们的ExceptionMiddlewareExtensions类 −

public static void ConfigureCustomExceptionMiddleware(this IApplicationBuilder
app){
   app.UseMiddleware<ExceptionMiddleware>();
}
登录后复制

在 Startup 类的配置方法中使用此方法 -

app.ConfigureCustomExceptionMiddleware();
登录后复制

以上是如何处理中间件 C# Asp.net Core 中的错误?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:tutorialspoint.com
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板