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