4 writes to FactoryTypeName
System.Configuration.ConfigurationManager (4)
System\Configuration\FactoryRecord.cs (3)
45FactoryTypeName = factoryTypeName; 63FactoryTypeName = factoryTypeName; 89FactoryTypeName = factoryTypeName;
System\Configuration\MgmtConfigurationRecord.cs (1)
1759factoryRecord.FactoryTypeName = configSection.SectionInformation.Type;
24 references to FactoryTypeName
System.Configuration.ConfigurationManager (24)
System\Configuration\ConfigurationSectionGroup.cs (2)
100_typeName = factoryRecord.FactoryTypeName; 108IsDeclarationRequired = parentFactoryRecord?.FactoryTypeName == null;
System\Configuration\FactoryRecord.cs (9)
173FactoryTypeName, 186if (FactoryTypeName != null) factoryTypeName = FactoryTypeName; 206if (FactoryTypeName == typeName) 214t2 = TypeUtil.GetType(host, FactoryTypeName, false); 219t2 = TypeUtil.GetType(FactoryTypeName, false); 231if ((typeName == null) || (FactoryTypeName == null)) 271return (FactoryTypeName != null) && FactoryTypeName.Contains("System.Configuration.IgnoreSection");
System\Configuration\MgmtConfigurationRecord.cs (11)
127Type type = TypeUtil.GetType(Host, factoryRecord.FactoryTypeName, throwOnError: true); 167Type type = string.IsNullOrEmpty(factoryRecord.FactoryTypeName) 169: TypeUtil.GetType(Host, factoryRecord.FactoryTypeName, true); 245if (factoryRecord.FactoryTypeName == null) 1132return (factoryRecord.FactoryTypeName != configSection.SectionInformation.Type) 1159string type = configSection.SectionInformation.Type ?? factoryRecord.FactoryTypeName; 1279string type = configSectionGroup.Type ?? factoryRecord.FactoryTypeName; 1368if ((factoryRecord.FactoryTypeName != null) || (configSectionGroup != null)) 1379addGroupUpdate = parentFactoryRecord?.FactoryTypeName == null; 1391(configSectionGroup.Type != factoryRecord.FactoryTypeName))) 1450((factoryRecord != null) && (configSectionGroup.Type != factoryRecord.FactoryTypeName)))
System\Configuration\RuntimeConfigurationRecord.cs (1)
95Type type = TypeUtil.GetType(configRecord.Host, factoryRecord.FactoryTypeName,
System\Configuration\SectionInformation.cs (1)
429_typeName = factoryRecord.FactoryTypeName;