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