Aqueduct.SitecoreLib.SitecoreConfigLoader.Load C# (CSharp) Method

Load() public method

public Load ( ) : SectionList
return SectionList
		public SectionList Load()
		{
			var sectionList = new SectionList();
			var globalSection = new Section("Global");
			Item settingsRoot = _database.GetItem(_settingsRoot);
			sectionList.Add(GetSettings(settingsRoot, globalSection, settingsRoot.Name));
			return sectionList;
		}