Custom app.config Config Section Handler
First you add a property in the class that extends Section: [ConfigurationProperty(“pages”, IsDefaultCollection = false)] [ConfigurationCollection(typeof(PageCollection), AddItemName = “add”)] public PageCollection Pages { get { return (PageCollection) this[“pages”]; } } Then you need to make a PageCollection class. All the examples I’ve seen are pretty much identical so just copy this one and rename “NamedService” … Read more