Aqueduct.Configuration.Loaders.ConfigurationLoader.GetActiveSections C# (CSharp) Method

GetActiveSections() private method

private GetActiveSections ( ) : SectionList
return SectionList
        private SectionList GetActiveSections ()
        {
            SectionList activeSections = new SectionList ();
            foreach (Section section in _sections)
            {
                if (section.IsActive (_context))
                    activeSections.Add (section);
            }
            return activeSections;
        }