定制授权属性实现

时间:2018-12-19 10:23:16

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

Asp.Net MVC 5中,我可以做这样的事情:

public class CustomAuthorizeAttribute : AuthorizeAttribute
{
    protected override bool AuthorizeCore(HttpContextBase httpContext)
    {
        // return true or false 
    }
}

然后将其用作操作的属性。 是否可以在Asp.Net Core 2.1中进行操作,如果可以,该怎么做?

0 个答案:

没有答案