我已经从AuthorizeAttribute
实现了RoleAuthorize类public sealed class RoleAuthorize : AuthorizeAttribute
{
protected override bool AuthorizeCore(HttpContextBase httpContext)
{
var roles = Roles;
return false;
}
}
但是当过滤器出现属性时,Roles为null。 谢谢。
答案 0 :(得分:-3)
您是否在动作方法中应用了过滤器,如下所示?
[RoleAuthorize(Roles = "MyRole")]
public ActionResult MyAction()
{
return View();
}