tnblog
首页
视频
资源
登录

重写基类的异常处理方法

3948人阅读 2020/3/31 15:30 总访问:436665 评论:0 收藏:0 手机
分类: ASP.NET
  1. 1.public override void OnException(HttpActionExecutedContext actionExecutedContext)
  2.         {
  3.             //异常日志记录
  4.             LogHelper.WriteError(string.Format("\r\nWebapi Global异常: Post数据:{0}\r\nHeaders:\r\n{1} URL:{2}",
  5.             HttpContext.Current.Request.Form, 
  6.             Global.GetHeaders(HttpContext.Current),
  7.             HttpContext.Current?.Request?.Url?.ToString() ?? ""), actionExecutedContext.Exception);
  8.             HttpResponseMessage response = new HttpResponseMessage();
  9.             response.Content = new StringContent("{\"error\":1}");
  10.             //返回调用方具体的异常信息
  11.             if (actionExecutedContext.Exception is NotImplementedException)
  12.             {
  13.                 response.StatusCode = HttpStatusCode.NotImplemented;
  14.                 actionExecutedContext.Response = response;
  15.             }
  16.             else if (actionExecutedContext.Exception is TimeoutException)
  17.             {
  18.                 response.StatusCode = HttpStatusCode.NotImplemented;
  19.                 actionExecutedContext.Response = response;
  20.             }
  21.             //如果找不到相应的异常,统一返回服务端错误500
  22.             else
  23.             {
  24.                 response.StatusCode = HttpStatusCode.InternalServerError;
  25.                 actionExecutedContext.Response = response;
  26.             }
  27.             base.OnException(actionExecutedContext);
  28.         }


评价
当你知道迷惑时,并不可怜,当你不知道迷惑时,才是最可怜的。
排名
3
文章
317
粉丝
22
评论
14
ICP备案 :渝ICP备18016597号-1
网站信息:2018-2025TNBLOG.NET
技术交流:群号656732739
联系我们:contact@tnblog.net
公网安备:50010702506256
欢迎加群交流技术