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