10 writes to GrantSet
mscorlib (10)
system\security\permissionlistset.cs (4)
156currentTriple.GrantSet = PermissionSet.s_fullTrust; 159currentTriple.GrantSet = PermissionSet.s_fullTrust; 174currentTriple.GrantSet = PermissionSet.s_fullTrust; 177currentTriple.GrantSet = PermissionSet.s_fullTrust;
system\security\permissionsettriple.cs (6)
42this.GrantSet = triple.GrantSet; 48GrantSet = null; 107GrantSet = new PermissionSet(true); 122this.GrantSet = retTriple.GrantSet.Copy(); 141GrantSet = in_g.Copy(); 156GrantSet = in_g.Copy();
18 references to GrantSet
mscorlib (18)
system\security\permissionlistset.cs (3)
61UpdateDomainPLS(adPLS.m_firstPermSetTriple.GrantSet, adPLS.m_firstPermSetTriple.RefusedSet); 155if (currentTriple.GrantSet == null) 173if (currentTriple.GrantSet == null)
system\security\permissionsettriple.cs (15)
42this.GrantSet = triple.GrantSet; 53return (AssertSet == null && GrantSet == null && RefusedSet == null); 86UpdateGrant(psTriple.GrantSet); 103if (GrantSet != null) 104retPs = in_a.Intersect(GrantSet); // Restrict the assert to what we've already been granted 122this.GrantSet = retTriple.GrantSet.Copy(); 140if (GrantSet == null) 143GrantSet.InplaceIntersect(in_g); 155if (GrantSet == null) 158GrantSet.InplaceIntersect(in_g); 222CodeAccessSecurityEngine.CheckHelper(GrantSet, RefusedSet, demand, permToken, rmh, null, SecurityAction.Demand, true); 237CodeAccessSecurityEngine.CheckSetHelper(GrantSet, RefusedSet, demandSet, rmh, null, SecurityAction.Demand, true); 249return CodeAccessSecurityEngine.CheckHelper(GrantSet, RefusedSet, demand, permToken, RuntimeMethodHandleInternal.EmptyHandle, null, SecurityAction.Demand, false); 258return CodeAccessSecurityEngine.CheckSetHelper(GrantSet, RefusedSet, demandSet, RuntimeMethodHandleInternal.EmptyHandle, null, SecurityAction.Demand, false); 279return (SecurityManager.GetSpecialFlags(GrantSet, RefusedSet) & flags) == flags;