Custom AuthorizeAttribute not called
问题 There are a lot of similar questions out there but this has me stumped. If I used [Authorize] I get prompted for a username and password but if I use [InternalAuthorizeV2] I don't I have a custom AuthorizeAttribute that for the moment does not do any anything special (I'm limiting things that could be wrong). [AttributeUsage(AttributeTargets.Class | AttributeTargets.Method, Inherited = true, AllowMultiple = false)] public class InternalAuthorizeV2Attribute: AuthorizeAttribute {} and a Action