Apache.Shiro.Subject.DelegatingSubject.IsPermittedAll C# (CSharp) Method

IsPermittedAll() public method

public IsPermittedAll ( ) : bool
return bool
        public bool IsPermittedAll(params string[] permissions)
        {
            return (HasPrincipals() && SecurityManager.IsPermittedAll(Principals, permissions));
        }

Same methods

DelegatingSubject::IsPermittedAll ( IEnumerable permissions ) : bool