49 references to ConfigUtil
System.Web (49)
Compilation\CompilationUtil.cs (3)
436Type t = ConfigUtil.GetType(typeName, propertyName, elem); 439ConfigUtil.CheckAssignableType(requiredBaseType, t, elem, propertyName); 442ConfigUtil.CheckAssignableType(requiredBaseType, requiredBaseType2, t, elem, propertyName);
Configuration\BrowserDefinition.cs (1)
560Type type = ConfigUtil.GetType(typeName, child, true /*ignoreCase*/);
Configuration\CompilationSection.cs (3)
455Type assemblyPostProcessorType = ConfigUtil.GetType(AssemblyPostProcessorType, assemblyPostProcessorTypeAttributeName, this); 456ConfigUtil.CheckBaseType(typeof(System.Web.Compilation.IAssemblyPostProcessor), 937ConfigUtil.SetFX45DefaultValue(this, _propTargetFramework, BinaryCompatibility.Current.TargetFramework.ToString());
Configuration\GlobalizationSection.cs (2)
234Type resourceProviderFactoryType = ConfigUtil.GetType(ResourceProviderFactoryType, "resourceProviderFactoryType", this); 235ConfigUtil.CheckBaseType(typeof(System.Web.Compilation.ResourceProviderFactory), resourceProviderFactoryType, "resourceProviderFactoryType", this);
Configuration\HandlerBase.cs (1)
150val = ConfigUtil.GetType(a.Value, a);
Configuration\HandlerFactoryCache.cs (2)
83if (!ConfigUtil.IsTypeHandlerOrFactory(t)) 101if (!ConfigUtil.IsTypeHandlerOrFactory(t))
Configuration\HealthMonitoringSectionHelper.cs (3)
114type = ConfigUtil.GetType(providerSettings.Type, "type", providerSettings); 125type = ConfigUtil.GetType(eventMappingSettings.Type, "type", eventMappingSettings); 299ruleInfo._customEvaluatorType = ConfigUtil.GetType(ruleInfo._customEvaluator,
Configuration\HttpHandlerAction.cs (4)
159_type = ConfigUtil.GetType(Type, "type", this); 161if (!ConfigUtil.IsTypeHandlerOrFactory(_type)) { 179Type t = ConfigUtil.GetType(Type, "type", this); 182if (!ConfigUtil.IsTypeHandlerOrFactory(t)) {
Configuration\HttpRuntimeSection.cs (1)
879ConfigUtil.SetFX45DefaultValue(this, _propRequestValidationMode, VersionUtil.Framework45);
Configuration\MachineKeySection.cs (1)
1313ConfigUtil.SetFX45DefaultValue(this, _propCompatibilityMode, MachineKeyCompatibilityMode.Framework45);
Configuration\PagesSection.cs (7)
369Type pageBaseType = ConfigUtil.GetType(PageBaseType, "pageBaseType", this); 370ConfigUtil.CheckBaseType(typeof(System.Web.UI.Page), pageBaseType, "pageBaseType", this); 386Type userControlBaseType = ConfigUtil.GetType( 390ConfigUtil.CheckBaseType(typeof(System.Web.UI.UserControl), 422Type pageParserFilterType = ConfigUtil.GetType(PageParserFilterType, "pageParserFilterType", this); 423ConfigUtil.CheckBaseType(typeof(PageParserFilter), pageParserFilterType, "pageParserFilterType", this); 792ConfigUtil.SetFX45DefaultValue(this, _propControlRenderingCompatibilityVersion, VersionUtil.Framework45);
Configuration\ProtocolsSection.cs (2)
276ConfigUtil.CheckAssignableType( typeof(ProcessProtocolHandler), processHandlerType, this, "ProcessHandlerType"); 291ConfigUtil.CheckAssignableType( typeof(AppDomainProtocolHandler), appDomainHandlerType, this, "AppDomainHandlerType");
Configuration\ProvidersHelper.cs (2)
28Type t = ConfigUtil.GetType(pnType, "type", providerSettings, true, true); 59Type t = ConfigUtil.GetType(pnType, "type", null, null, true, true);
Configuration\TagMapCollection.cs (2)
82Type tagType = ConfigUtil.GetType(tmi.TagType, "tagType", tmi); 83Type mappedTagType = ConfigUtil.GetType(tmi.MappedTagType, "mappedTagType", tmi);
Configuration\TransformerInfoCollection.cs (1)
87Type transformerType = ConfigUtil.GetType(ti.Type, "type", ti);
Hosting\ProcessHost.cs (1)
392ConfigUtil.CheckAssignableType( assignableType, handlerType, element, elementPropertyName);
ModulesEntry.cs (1)
67return ConfigUtil.GetType(typeName, propertyName, configElement, false /*checkAptcaBit*/);
Security\Cryptography\MachineKeyCryptoAlgorithmFactory.cs (1)
128throw ConfigUtil.MakeConfigurationErrorsException(
Security\Cryptography\MachineKeyDataProtectorFactory.cs (1)
62throw ConfigUtil.MakeConfigurationErrorsException(
Security\Cryptography\MachineKeyMasterKeyProvider.cs (2)
116throw ConfigUtil.MakeConfigurationErrorsException( 125throw ConfigUtil.MakeConfigurationErrorsException(
State\SessionStateModule.cs (4)
303resolverType = ConfigUtil.GetType(partitionResolverType, "partitionResolverType", config); 304ConfigUtil.CheckAssignableType(typeof(IPartitionResolver), resolverType, config, "partitionResolverType"); 323managerType = ConfigUtil.GetType(sessionIDManagerType, "sessionIDManagerType", config); 324ConfigUtil.CheckAssignableType(typeof(ISessionIDManager), managerType, config, "sessionIDManagerType");
Util\HttpEncoder.cs (2)
144Type encoderType = ConfigUtil.GetType(encoderTypeName, "encoderType", runtimeSection); 145ConfigUtil.CheckBaseType(typeof(HttpEncoder) /* expectedBaseType */, encoderType, "encoderType", runtimeSection);
Util\RequestValidator.cs (2)
49Type validatorType = ConfigUtil.GetType(validatorTypeName, "requestValidationType", runtimeSection); 50ConfigUtil.CheckBaseType(typeof(RequestValidator) /* expectedBaseType */, validatorType, "requestValidationType", runtimeSection);