System.Security.PermissionListSet.CheckSetDemandNoThrow C# (CSharp) Method

CheckSetDemandNoThrow() private method

private CheckSetDemandNoThrow ( PermissionSet pSet ) : bool
pSet PermissionSet
return bool
        internal bool CheckSetDemandNoThrow(PermissionSet pSet)
        {
            // AppDomain permissions - no asserts. So there should only be one triple to work with
            BCLDebug.Assert(m_permSetTriples == null && m_firstPermSetTriple != null, "More than one PermissionSetTriple encountered in AD PermissionListSet");

            
            return m_firstPermSetTriple.CheckSetDemandNoThrow(pSet);
        }