在Asp.Net MVC 5
中,我可以做这样的事情:
public class CustomAuthorizeAttribute : AuthorizeAttribute
{
protected override bool AuthorizeCore(HttpContextBase httpContext)
{
// return true or false
}
}
然后将其用作操作的属性。
是否可以在Asp.Net Core 2.1
中进行操作,如果可以,该怎么做?