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.
}
}
答案 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.
}
}