System.Configuration.MgmtConfigurationRecord.FindAndCloneImmediateParentSection C# (CSharp) 메소드

FindAndCloneImmediateParentSection() 개인적인 메소드

private FindAndCloneImmediateParentSection ( ConfigurationSection configSection ) : ConfigurationSection
configSection ConfigurationSection
리턴 ConfigurationSection
        internal ConfigurationSection FindAndCloneImmediateParentSection(ConfigurationSection configSection) {
            string configKey = configSection.SectionInformation.ConfigKey;
            ConfigurationSection parentSection = FindImmediateParentSection(configSection);
            SectionRecord sectionRecord = GetSectionRecord(configKey, false);
            ConfigurationSection clone = (ConfigurationSection) UseParentResult(configKey, parentSection, sectionRecord);
            return clone;
        }