23 references to Level
System.Web (23)
Compilation\BuildManager.cs (1)
658specialFilesHashCodeCombiner.AddObject(casConfig.Level);
Hosting\ApplicationManager.cs (8)
1114if (trustSection == null || String.IsNullOrEmpty(trustSection.Level)) { 1126if (trustSection.Level == "Full") { 1159if (trustSection.Level != "Full") { 1381if (securityPolicySection == null || securityPolicySection.TrustLevels[trustSection.Level] == null) { 1382throw new ConfigurationErrorsException(SR.GetString(SR.Unable_to_get_policy_file, trustSection.Level), String.Empty, 0); 1384String configFile = (String)securityPolicySection.TrustLevels[trustSection.Level].PolicyFileExpanded; 1386throw new HttpException(SR.GetString(SR.Unable_to_get_policy_file, trustSection.Level)); 1479throw new ConfigurationErrorsException(SR.GetString(SR.Unable_to_get_policy_file, trustSection.Level));
HttpRuntime.cs (14)
468if (trustSection == null || String.IsNullOrEmpty(trustSection.Level)) { 3128string trustLevel = trustSection.Level; 3130if (trustSection.Level == "Full") { 3135if (securityPolicySection == null || securityPolicySection.TrustLevels[trustSection.Level] == null) { 3136throw new ConfigurationErrorsException(SR.GetString(SR.Unable_to_get_policy_file, trustSection.Level), String.Empty, 0); 3144if (trustSection.Level == "Minimal" || trustSection.Level == "Low" || 3145trustSection.Level == "Medium" || trustSection.Level == "High") { 3146file = (String)securityPolicySection.TrustLevels[trustSection.Level].LegacyPolicyFileExpanded; 3149file = (String)securityPolicySection.TrustLevels[trustSection.Level].PolicyFileExpanded; 3153throw new HttpException(SR.GetString(SR.Unable_to_get_policy_file, trustSection.Level)); 3283_trustLevel = trustSection.Level; 3291String file = (String)securityPolicySection.TrustLevels[trustSection.Level].PolicyFileExpanded;