CheckSetDemandNoThrow() private méthode

private CheckSetDemandNoThrow ( PermissionSet demandSet ) : bool
demandSet PermissionSet
Résultat bool
        [System.Security.SecurityCritical]  // auto-generated
        internal bool CheckSetDemandNoThrow(PermissionSet pSet)
        {
            // AppDomain permissions - no asserts. So there should only be one triple to work with
            Contract.Assert(m_permSetTriples == null && m_firstPermSetTriple != null, "More than one PermissionSetTriple encountered in AD PermissionListSet");


            return(m_firstPermSetTriple.CheckSetDemandNoThrow(pSet));
        }