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

IsConfigSectionMoved() 개인적인 메소드

private IsConfigSectionMoved ( SectionRecord sectionRecord, ConfigurationSection configSection ) : bool
sectionRecord SectionRecord
configSection ConfigurationSection
리턴 bool
        private bool IsConfigSectionMoved(SectionRecord sectionRecord, ConfigurationSection configSection) {
            if (!sectionRecord.HasFileInput)
                return true;

            return AreLocationAttributesModified(sectionRecord, configSection);
        }