Apache.Shiro.Authz.Aop.RolesAttributeHandler.AssertAuthorized C# (CSharp) Method

AssertAuthorized() public method

public AssertAuthorized ( Attribute attribute ) : void
attribute System.Attribute
return void
        public override void AssertAuthorized(Attribute attribute)
        {
            if (attribute is RequiresRolesAttribute)
            {
                AssertAuthorized(attribute as RequiresRolesAttribute);
            }
        }

Same methods

RolesAttributeHandler::AssertAuthorized ( RequiresRolesAttribute attribute ) : void