asp.net-mvc – 自定义异常过滤器在asp.net MVC中没有被击中

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – 自定义异常过滤器在asp.net MVC中没有被击中前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个自定义异常过滤器,我用来捕获一个自定义的异常,我写了,但由于某些原因,当我抛出我的异常,它没有得到过滤器.相反,我只是收到一个错误,我的异常未被用户代码处理.任何人都可以提供一些建议/帮助,我应该如何设置?相关代码如下:
  1. // controller
  2. [CustomExceptionFilter]
  3. public class SomeController : Controller
  4. {
  5. public SomeController()
  6. {
  7.  
  8. }
  9. public ActionResult Index()
  10. {
  11. SomeClass.SomeStaticMethod();
  12. return View();
  13. }
  14. }

这是具有customexception属性的控制器

  1. // some class (where exception is being thrown)
  2. public class SomeClass
  3. {
  4. public static void SomeStaticMethod()
  5. {
  6. throw new MyCustomException("Test");
  7. }
  8. }

那就是抛出异常的类(我的测试)(我也试过直接在控制器上).

  1. // Custom exception filter (want this to catch all unhandled exceptions)
  2. public class CustomExceptionFilter : FilterAttribute,IExceptionFilter
  3. {
  4. public void OnException(ExceptionContext filterContext)
  5. {
  6. if (filterContext.Exception.GetType() == typeof(MyCustomException))
  7. {
  8. // do stuff
  9. }
  10. }
  11. }

这是自定义异常过滤器…它在执行代码并抛出异常时永远不会被访问.相反,我得到上面提到的错误.我读过的一切都表明这是设置这个的正确方法,但是当我在自定义过滤器中设置断点时,它永远不会被击中….

我在这里缺少什么?

TIA

解决方法

处理错误后,您需要让过滤器上下文知道已被处理.喜欢这个:
  1. filterContext.ExceptionHandled = true;

这应该在你的“//做东西”部分.

我已经复制了你的代码,并且过滤器被称为罚款.我所做的唯一区别是我添加了exceptionHandled代码,并在该行添加了断点.

猜你在找的asp.Net相关文章