Go to the documentation of this file.00001 using System;
00002 using System.Collections.Generic;
00003 using System.Text;
00004 using System.Configuration;
00005
00006 namespace N2.Configuration
00007 {
00008 public class SectionGroup : ConfigurationSectionGroup
00009 {
00010 public EngineSection Engine
00011 {
00012 get { return (EngineSection)Sections["engine"]; }
00013 }
00014 public DatabaseSection Database
00015 {
00016 get { return (DatabaseSection)Sections["database"]; }
00017 }
00018 public HostSection Host
00019 {
00020 get { return (HostSection)Sections["host"]; }
00021 }
00022 }
00023 }