1 write to FactoryTypeName
System.Configuration (1)
System\Configuration\MgmtConfigurationRecord.cs (1)
1913
factoryRecord.
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)
126
Type type = TypeUtil.GetTypeWithReflectionPermission(Host, factoryRecord.
FactoryTypeName
, true);
178
if (String.IsNullOrEmpty(factoryRecord.
FactoryTypeName
)) {
182
type = TypeUtil.GetTypeWithReflectionPermission(Host, factoryRecord.
FactoryTypeName
, true);
309
if (factoryRecord.
FactoryTypeName
== null) {
1306
return factoryRecord.
FactoryTypeName
!= configSection.SectionInformation.Type
1328
string type = (configSection.SectionInformation.Type != null) ? configSection.SectionInformation.Type : factoryRecord.
FactoryTypeName
;
1445
string type = (configSectionGroup.Type != null) ? configSectionGroup.Type : factoryRecord.
FactoryTypeName
;
1546
else if (factoryRecord.
FactoryTypeName
!= null || configSectionGroup != null) {
1554
addGroupUpdate = (parentFactoryRecord == null || parentFactoryRecord.
FactoryTypeName
== null);
1561
|| (configSectionGroup != null && configSectionGroup.Type != factoryRecord.
FactoryTypeName
)) {
1614
(factoryRecord != null && configSectionGroup.Type != factoryRecord.
FactoryTypeName
)) {
System\Configuration\RuntimeConfigurationRecord.cs (1)
150
Type type = TypeUtil.GetTypeWithReflectionPermission(configRecord.Host, factoryRecord.
FactoryTypeName
, true);
System\Configuration\SectionInformation.cs (1)
108
_typeName = factoryRecord.
FactoryTypeName
;