如何使用C#停止MVC 5中的执行过程?

时间:2015-03-07 04:34:07

标签: c# asp.net asp.net-mvc

TODO部分需要哪些代码?

我的应用程序代码是:

/// <summary>
/// Override onAuthorization filter is use for authorization use request.
/// </summary>
/// <param name="filterContext"></param>

protected override void OnAuthorization(AuthorizationContext filterContext)
{
    AuthorizationManager authorizationManager = new AuthorizationManager();

    string FilePath = Convert.ToString(filterContext.HttpContext.Request.FilePath);

    if (!authorizationManager.IsAuthorized(_userSession, FilePath))
    {
        RedirectToControllers(ControllerHelper.Controller.ACCOUNT, ControllerHelper.Controller.Action.ACCOUNT_LOGIN);

        //TODO:
        // 1. Need to stop execution process from here. 
        // 2. No need to execute any line of code from here.
        // I have tested return/Break not working here.
    }
}

2 个答案:

答案 0 :(得分:1)

更改RedirectToControllers以返回ActionResult,然后设置filterContext.Result。

//filterContext.Result = new RedirectResult("~/account/login");

filterContext.Result =  RedirectToControllers(ControllerHelper.Controller.ACCOUNT,  ControllerHelper.Controller.Action.ACCOUNT_LOGIN);

答案 1 :(得分:-1)

您是否尝试过使用break退出if

protected override void OnAuthorization(AuthorizationContext filterContext)
{
    AuthorizationManager authorizationManager = new AuthorizationManager();

    string FilePath = Convert.ToString(filterContext.HttpContext.Request.FilePath);

    if (!authorizationManager.IsAuthorized(_userSession, FilePath))
    {
        RedirectToControllers(ControllerHelper.Controller.ACCOUNT, ControllerHelper.Controller.Action.ACCOUNT_LOGIN);

        break; // use this
        return; // or this
        // 1. Need to stop excution process from here. 
        // 2. No need to excute any line of code from here.
    }
 }