在ASP.NET MVC 4 ActionFilterAttribute中引发异常的正确方法

本文关键字:异常 方法 NET ASP MVC ActionFilterAttribute | 更新日期: 2023-09-27 18:29:23

注意,这是针对MVC 4中的ApiController的,尽管我认为它不应该更改任何内容。

 public class OAuthFilter : System.Web.Http.ActionFilterAttribute
 {
       public override void OnActionExecuting(System.Web.Http.Controllers.HttpActionContext actionContext)
       {
              if (checkVerified())
              {
                   // How to raise a 401 or some other type of exception.
              }
       }        
 }

在ASP.NET MVC 4 ActionFilterAttribute中引发异常的正确方法

您可以设置HttpActionContext:的结果属性

public override void OnActionExecuting(HttpActionContext actionContext)
{
    if (checkVerified())
    {
        actionContext.Response = 
            new HttpResponseMessage(HttpStatusCode.Unauthorized);
    }
}

你可能只是扔:

throw new HttpResponseException(HttpStatusCode.Unauthorized);

但我还没查过。