3 writes to Attributes
mscorlib (3)
system\security\policy\policylevel.cs (1)
766policy.Attributes |= ps.Attributes;
system\security\policy\policystatement.cs (2)
286Attributes = childPolicy.Attributes; 291Attributes = Attributes | childPolicy.Attributes;
16 references to Attributes
mscorlib (16)
system\security\policy\codegroup.cs (2)
361if (m_policy.Attributes != PolicyStatementAttribute.Nothing) 362e.AddAttribute( "Attributes", XMLUtil.BitFieldEnumToString( typeof( PolicyStatementAttribute ), m_policy.Attributes ) );
system\security\policy\filecodegroup.cs (1)
67if ((childPolicy.Attributes & PolicyStatementAttribute.Exclusive) == PolicyStatementAttribute.Exclusive) {
system\security\policy\netcodegroup.cs (1)
393if ((childPolicy.Attributes & PolicyStatementAttribute.Exclusive) == PolicyStatementAttribute.Exclusive)
system\security\policy\policylevel.cs (2)
766policy.Attributes |= ps.Attributes; 1274if ((frame.policy.Attributes & PolicyStatementAttribute.Exclusive) != 0) {
system\security\policy\policystatement.cs (7)
155PolicyStatement copy = new PolicyStatement(m_permSet, Attributes, true); // The PolicyStatement .ctor will copy the permission set 252if (((Attributes & childPolicy.Attributes) & PolicyStatementAttribute.Exclusive) == PolicyStatementAttribute.Exclusive) 283if ((childPolicy.Attributes & PolicyStatementAttribute.Exclusive) == PolicyStatementAttribute.Exclusive) 286Attributes = childPolicy.Attributes; 291Attributes = Attributes | childPolicy.Attributes;
system\security\policy\unioncodegroup.cs (1)
74if ((childPolicy.Attributes & PolicyStatementAttribute.Exclusive) == PolicyStatementAttribute.Exclusive)
system\security\policymanager.cs (2)
134else if ((policy.Attributes & PolicyStatementAttribute.LevelFinal) == PolicyStatementAttribute.LevelFinal) 409return (policy.Attributes & PolicyStatementAttribute.Exclusive) == 0;