System.Configuration.MgmtConfigurationRecord.IsConfigSectionMoved C# (CSharp) Method

IsConfigSectionMoved() private method

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

            return AreLocationAttributesModified(sectionRecord, configSection);
        }