9 instantiations of FactoryRecord
System.Configuration (9)
System\Configuration\BaseConfigurationRecord.cs (5)
2407
factoryRecord = new
FactoryRecord
(configKey, parentConfigKey, tagName, typeName, xmlUtil.Filename, lineNumber);
2572
factoryRecord = new
FactoryRecord
(
2977
factoryRecord = new
FactoryRecord
(
4400
new
FactoryRecord
(
4428
new
FactoryRecord
(
System\Configuration\FactoryRecord.cs (2)
117
return new
FactoryRecord
( _configKey,
137
return new
FactoryRecord
( _configKey,
System\Configuration\MgmtConfigurationRecord.cs (2)
797
factoryRecord = new
FactoryRecord
(configKey,
978
factoryRecord = new
FactoryRecord
(configKey, group, name, typeName, ConfigStreamInfo.StreamName, -1);
81 references to FactoryRecord
System.Configuration (81)
System\Configuration\BaseConfigurationRecord.cs (34)
174
protected abstract object CreateSectionFactory(
FactoryRecord
factoryRecord);
177
protected abstract object CreateSection(bool inputIsTrusted,
FactoryRecord
factoryRecord, SectionRecord sectionRecord, SectionInput sectionInput, object parentConfig, ConfigXmlReader reader);
244
private bool ShouldPrefetchRawXml(
FactoryRecord
factoryRecord) {
762
FactoryRecord
factoryRecord = null;
799
factoryRecord = (
FactoryRecord
) factoryList[configKey];
949
FactoryRecord
factoryRecord = null;
1356
string configKey, bool getRuntimeObject,
FactoryRecord
factoryRecord, SectionRecord sectionRecord,
1518
FactoryRecord
factoryRecord, SectionRecord sectionRecord, object parentResult,
1724
FactoryRecord
factoryRecord, SectionRecord sectionRecord, object parentResult) {
2118
protected object CallCreateSection(bool inputIsTrusted,
FactoryRecord
factoryRecord, SectionRecord sectionRecord, SectionInput sectionInput, object parentConfig, ConfigXmlReader reader) {
2167
internal
FactoryRecord
FindFactoryRecord(string configKey, bool permitErrors, out BaseConfigurationRecord configRecord) {
2172
FactoryRecord
factoryRecord = tConfigRecord.GetFactoryRecord(configKey, permitErrors);
2192
internal
FactoryRecord
FindFactoryRecord(string configKey, bool permitErrors) {
2206
private
FactoryRecord
FindAndEnsureFactoryRecord(string configKey, out bool isRootDeclaredHere) {
2210
FactoryRecord
factoryRecord = FindFactoryRecord(configKey, false, out configRecord);
2215
FactoryRecord
rootFactoryRecord = factoryRecord;
2221
FactoryRecord
tempFactoryRecord = currentConfigRecord.FindFactoryRecord(configKey, false, out tempConfigRecord);
2378
FactoryRecord
factoryRecord = (
FactoryRecord
) factoryList[configKey];
2386
FactoryRecord
parentFactoryRecord = _parent.FindFactoryRecord(configKey, true);
2537
FactoryRecord
factoryRecord = (
FactoryRecord
) factoryList[configKey];
2544
FactoryRecord
parentFactoryRecord = _parent.FindFactoryRecord(configKey, true);
2954
FactoryRecord
factoryRecord = FindFactoryRecord(configKey, true);
3449
FactoryRecord
factoryRecord = null;
3555
private void VerifyDefinitionAllowed(
FactoryRecord
factoryRecord, string configPath, IConfigErrorInfo errorInfo) {
3750
internal
FactoryRecord
GetFactoryRecord(string configKey, bool permitErrors) {
3751
FactoryRecord
factoryRecord;
3756
factoryRecord = (
FactoryRecord
) _factoryRecords[configKey];
3894
FactoryRecord
factoryRecord = FindFactoryRecord(sectionName, false);
3996
FactoryRecord
factoryRecord = FindFactoryRecord(configKey, false);
4391
FactoryRecord
factoryRecord = (
FactoryRecord
)factoryList[RESERVED_SECTION_PROTECTED_CONFIGURATION];
4417
factoryRecord = (
FactoryRecord
)factoryList[Microsoft_CONFIGURATION_SECTION];
System\Configuration\ConfigurationSectionGroup.cs (5)
28
internal void AttachToConfigurationRecord(MgmtConfigurationRecord configRecord,
FactoryRecord
factoryRecord) {
36
FactoryRecord
parentFactoryRecord = null;
68
private
FactoryRecord
FindParentFactoryRecord(bool permitErrors) {
69
FactoryRecord
factoryRecord = null;
165
FactoryRecord
factoryRecord = FindParentFactoryRecord(false);
System\Configuration\FactoryRecord.cs (2)
116
internal
FactoryRecord
CloneSection(string filename, int lineNumber) {
132
internal
FactoryRecord
CloneSectionGroup(string factoryTypeName, string filename, int lineNumber) {
System\Configuration\MgmtConfigurationRecord.cs (19)
123
override protected object CreateSectionFactory(
FactoryRecord
factoryRecord) {
145
override protected object CreateSection(bool inputIsTrusted,
FactoryRecord
factoryRecord, SectionRecord sectionRecord, SectionInput sectionInput, object parentConfig, ConfigXmlReader reader) {
175
private ConstructorInfo CreateSectionGroupFactory(
FactoryRecord
factoryRecord) {
193
private ConstructorInfo EnsureSectionGroupFactory(
FactoryRecord
factoryRecord) {
211
FactoryRecord
factoryRecord = FindFactoryRecord(configKey, false);
300
FactoryRecord
factoryRecord = FindFactoryRecord(configKey, false, out configRecord);
411
foreach (
FactoryRecord
factoryRecord in configRecord._factoryRecords.Values) {
443
FactoryRecord
factoryRecord = GetFactoryRecord(configKey, false);
775
FactoryRecord
factoryRecord = FindFactoryRecord(configKey, true);
961
FactoryRecord
factoryRecord = FindFactoryRecord(configKey, true);
1305
private bool AreDeclarationAttributesModified(
FactoryRecord
factoryRecord, ConfigurationSection configSection) {
1323
private string GetUpdatedSectionDeclarationXml(
FactoryRecord
factoryRecord, ConfigurationSection configSection, ConfigurationSaveMode saveMode) {
1436
private string GetUpdatedSectionGroupDeclarationXml(
FactoryRecord
factoryRecord, ConfigurationSectionGroup configSectionGroup) {
1484
foreach (
FactoryRecord
factoryRecord in _factoryRecords.Values) {
1547
FactoryRecord
parentFactoryRecord = null;
1588
FactoryRecord
factoryRecord = MgmtParent.FindFactoryRecord(sectionRecord.ConfigKey, false);
1612
FactoryRecord
factoryRecord = MgmtParent.FindFactoryRecord(configSectionGroup.SectionGroupName, false);
1902
foreach (
FactoryRecord
factoryRecord in _factoryRecords.Values) {
2902
FactoryRecord
factoryRecord = FindFactoryRecord(configKey, false);
System\Configuration\RuntimeConfigurationRecord.cs (10)
51
override protected object CreateSectionFactory(
FactoryRecord
factoryRecord) {
56
override protected object CreateSection(bool inputIsTrusted,
FactoryRecord
factoryRecord, SectionRecord sectionRecord, SectionInput sectionInput, object parentConfig, ConfigXmlReader reader) {
137
internal RuntimeConfigurationFactory(RuntimeConfigurationRecord configRecord,
FactoryRecord
factoryRecord) {
148
private void Init(RuntimeConfigurationRecord configRecord,
FactoryRecord
factoryRecord) {
170
private void InitWithFullTrust(RuntimeConfigurationRecord configRecord,
FactoryRecord
factoryRecord) {
175
private void InitWithRestrictedPermissions(RuntimeConfigurationRecord configRecord,
FactoryRecord
factoryRecord) {
217
RuntimeConfigurationRecord configRecord,
FactoryRecord
factoryRecord, SectionRecord sectionRecord,
276
RuntimeConfigurationRecord configRecord,
FactoryRecord
factoryRecord, SectionRecord sectionRecord,
284
RuntimeConfigurationRecord configRecord,
FactoryRecord
factoryRecord, SectionRecord sectionRecord,
306
FactoryRecord
factoryRecord, SectionRecord sectionRecord, SectionInput sectionInput, object parentConfig, ConfigXmlReader reader) {
System\Configuration\SectionInformation.cs (11)
96
internal void AttachToConfigurationRecord(MgmtConfigurationRecord configRecord,
FactoryRecord
factoryRecord, SectionRecord sectionRecord) {
101
internal void SetRuntimeConfigurationInformation(BaseConfigurationRecord configRecord,
FactoryRecord
factoryRecord, SectionRecord sectionRecord) {
267
private
FactoryRecord
FindParentFactoryRecord(bool permitErrors) {
268
FactoryRecord
factoryRecord = null;
296
FactoryRecord
factoryRecord = FindParentFactoryRecord(false);
320
FactoryRecord
factoryRecord = FindParentFactoryRecord(false);
344
FactoryRecord
factoryRecord = FindParentFactoryRecord(false);
380
FactoryRecord
factoryRecord = FindParentFactoryRecord(false);
691
FactoryRecord
factoryRecord = FindParentFactoryRecord(false);
717
FactoryRecord
factoryRecord = FindParentFactoryRecord(false);
746
FactoryRecord
factoryRecord = FindParentFactoryRecord(false);