28 references to SecurityRuleSet
mscorlib (11)
system\reflection\assembly.cs (3)
876public virtual SecurityRuleSet SecurityRuleSet 1566private extern static SecurityRuleSet GetSecurityRuleSet(RuntimeAssembly assembly); 1611public override SecurityRuleSet SecurityRuleSet
system\reflection\emit\assemblybuilder.cs (1)
1323public override SecurityRuleSet SecurityRuleSet
system\reflection\emit\dynamicmethod.cs (2)
317ConstructorInfo securityRulesCtor = typeof(SecurityRulesAttribute).GetConstructor(new Type[] { typeof(SecurityRuleSet) }); 319new CustomAttributeBuilder(securityRulesCtor, new object[] { SecurityRuleSet.Level1 });
system\runtime\interopservices\typelibconverter.cs (2)
262ConstructorInfo securityRulesCtor = typeof(SecurityRulesAttribute).GetConstructor(new Type[] { typeof(SecurityRuleSet) }); 264new CustomAttributeBuilder(securityRulesCtor, new object[] { SecurityRuleSet.Level2 });
system\security\attributes.cs (3)
190private SecurityRuleSet m_ruleSet; 193public SecurityRulesAttribute(SecurityRuleSet ruleSet) 205public SecurityRuleSet RuleSet
System (2)
regex\system\text\regularexpressions\RegexCompiler.cs (2)
3092ConstructorInfo securityRulesCtor = typeof(SecurityRulesAttribute).GetConstructor(new Type[] { typeof(SecurityRuleSet) }); 3094new CustomAttributeBuilder(securityRulesCtor, new object[] { SecurityRuleSet.Level2 });
System.Data.Entity (2)
System\Data\Objects\Internal\EntityProxyFactory.cs (2)
78ConstructorInfo securityRulesAttributeConstructor = typeof(SecurityRulesAttribute).GetConstructor(new Type[] { typeof(SecurityRuleSet) }); 82new CustomAttributeBuilder(securityRulesAttributeConstructor, new object[1] { SecurityRuleSet.Level1 })
System.Data.Linq (1)
Properties\AssemblyInfo.cs (1)
11[assembly: SecurityRules(System.Security.SecurityRuleSet.Level1, SkipVerificationInFullTrust = true)]
System.Data.SqlXml (2)
System\Xml\Xsl\Xslt\Scripts.cs (1)
266new CodeTypeReferenceExpression(typeof(System.Security.SecurityRuleSet)), "Level1"))));
System\Xml\Xsl\XsltOld\Compiler.cs (1)
786new CodeTypeReferenceExpression(typeof(System.Security.SecurityRuleSet)), "Level1"))));
System.Web (6)
Compilation\AssemblyBuilder.cs (5)
588Type enumType = typeof(SecurityRuleSet); 590SecurityRuleSet set = SecurityRuleSet.Level1; 597SecurityRuleSet set = SecurityRuleSet.Level2;
HttpRuntime.cs (1)
2760if (assembly.SecurityRuleSet == SecurityRuleSet.Level1) {
System.Web.Extensions (2)
UI\WebControls\Dynamic.cs (2)
267ConstructorInfo securityRulesConstructor = typeof(SecurityRulesAttribute).GetConstructor(new Type[] { typeof(SecurityRuleSet) }); 268CustomAttributeBuilder securityRulesAttribute = new CustomAttributeBuilder(securityRulesConstructor, new object[] { SecurityRuleSet.Level1 });
System.Xml (2)
System\Xml\Serialization\Compilation.cs (2)
441new Type[] { typeof(SecurityRuleSet) }, 444assemblyBuilder.SetCustomAttribute(new CustomAttributeBuilder(SecurityRulesAttribute_ctor, new Object[] { SecurityRuleSet.Level1 }));