ASP.NET IAuthorizationFilter OnAuthorization
|
嗨,我正在尝试实现自定义授权过滤器
//The Authourization attribute on a controller
public class CustomAdminAuthorizationFilter : IAuthorizationFilter
{
private readonly IAuthentication _authentication;
public SageAdminAuthorizationFilter(IAuthentication authentication)
{
_authentication = authentication;
}
public void OnAuthorization(AuthorizationContext filterContext)
{
bool result = _authentication.Authorize(filterContext.HttpContext);
}
}
如您在OnAuthorization上看到的,我得到的结果为true,为false。
我需要设定什么才能返回原籍?
编辑:
似乎仍然让我直接进入登录页面
我确实注入了IAuthetication
this.BindFilter<CustomAdminAuthorizationFilter>(FilterScope.Controller, 0);
Bind<IAuthentication>().To<CustomAuthenticationService>();
然后,我在控制器中装饰了我的动作。
[Authorize]
public ActionResult Index()
{
ViewBag.Title = \"Welcome\";
ViewBag.Message = \"Welcome to ASP.NET MVC!\";
return View();
}
在我的web.config我使用
<authentication mode=\"Forms\">
<forms loginUrl=\"~/Account/LogOn\" timeout=\"2880\" />
</authentication>
应该改变吗?
任何帮助将不胜感激。
没有找到相关结果
已邀请:
1 个回复
骨酚柯
,而不是简单的
现在,不使用
而是使用新的using8ѭ属性