1 write to FactoryTypeName
System.Configuration (1)
System\Configuration\MgmtConfigurationRecord.cs (1)
1913factoryRecord.FactoryTypeName = configSection.SectionInformation.Type;
15 references to FactoryTypeName
System.Configuration (15)
System\Configuration\ConfigurationSectionGroup.cs (2)
33_typeName = factoryRecord.FactoryTypeName; 41_declarationRequired = (parentFactoryRecord == null || parentFactoryRecord.FactoryTypeName == null);
System\Configuration\MgmtConfigurationRecord.cs (11)
126Type type = TypeUtil.GetTypeWithReflectionPermission(Host, factoryRecord.FactoryTypeName, true); 178if (String.IsNullOrEmpty(factoryRecord.FactoryTypeName)) { 182type = TypeUtil.GetTypeWithReflectionPermission(Host, factoryRecord.FactoryTypeName, true); 309if (factoryRecord.FactoryTypeName == null) { 1306return factoryRecord.FactoryTypeName != configSection.SectionInformation.Type 1328string type = (configSection.SectionInformation.Type != null) ? configSection.SectionInformation.Type : factoryRecord.FactoryTypeName; 1445string type = (configSectionGroup.Type != null) ? configSectionGroup.Type : factoryRecord.FactoryTypeName; 1546else if (factoryRecord.FactoryTypeName != null || configSectionGroup != null) { 1554addGroupUpdate = (parentFactoryRecord == null || parentFactoryRecord.FactoryTypeName == null); 1561|| (configSectionGroup != null && configSectionGroup.Type != factoryRecord.FactoryTypeName)) { 1614(factoryRecord != null && configSectionGroup.Type != factoryRecord.FactoryTypeName)) {
System\Configuration\RuntimeConfigurationRecord.cs (1)
150Type type = TypeUtil.GetTypeWithReflectionPermission(configRecord.Host, factoryRecord.FactoryTypeName, true);
System\Configuration\SectionInformation.cs (1)
108_typeName = factoryRecord.FactoryTypeName;