我正在尝试学习和理解Web API 2中的全局异常处理。当我逐步执行以下代码时,我认为我在Handle方法中达到了我的突破点,但我并不是。
我错过了什么?
以下是我所做的:我在Visual Studio 2013 Update 4中创建了一个新的Web API项目。在我的根目录中,我创建了以下类 - 名为GlobalExceptionHandler.cs,如下所示:
using System.Net.Http;
using System.Threading;
using System.Threading.Tasks;
using System.Web.Http;
using System.Web.Http.ExceptionHandling;
public class GlobalExceptionHandler : ExceptionHandler
{
public override void Handle(ExceptionHandlerContext context)
{
// --> Break Point in the next line <--
string str1 = context.Exception.Message;
}
}
这就是我的Startup.cs的样子:
using Owin;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Http;
using System.Web.Http.ExceptionHandling;
public class Startup
{
public void Configuration(IAppBuilder app)
{
var config = new HttpConfiguration();
config.Services.Replace(typeof(IExceptionHandler), new GlobalExceptionHandler());
config.MapHttpAttributeRoutes();
config.Routes.MapHttpRoute(
name: "DefaultApi",
routeTemplate: "api/{controller}/{id}",
defaults: new { id = RouteParameter.Optional }
);
app.UseWebApi(config);
}
}
当我尝试在我的web api方法中生成异常时,我希望在GlobalExceptionHandler中使用Handle方法,但我不是。
public IHttpActionResult Get()
{
throw new HttpResponseException(HttpStatusCode.BadRequest);
return Ok("I should not get here because of exception");
}
答案 0 :(得分:0)
在WebApi中,抛出HttpResponseException被认为是返回响应。它不被视为未处理的异常,因此不会被您注册的异常处理程序拾取。尝试抛出另一个异常类型,它应该可以工作。