Custom app.config Config Section Handler - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T17:52:25Z http://stackoverflow.com/feeds/question/758986 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/758986/custom-app-config-config-section-handler 3 Custom app.config Config Section Handler B. Tyndall 2009-04-17T04:10:22Z 2009-04-17T14:17:38Z <p>What is the correct way to pick up the list of "pages" via a class that inherits from System.Configuration.Section if I used a app.config like this?</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8" ?&gt; &lt;configuration&gt; &lt;configSections&gt; &lt;section name="XrbSettings" type="Xrb.UI.XrbSettings,Xrb.UI" /&gt; &lt;/configSections&gt; &lt;XrbSettings&gt; &lt;pages&gt; &lt;add title="Google" url="http://www.google.com" /&gt; &lt;add title="Yahoo" url="http://www.yahoo.com" /&gt; &lt;/pages&gt; &lt;/XrbSettings&gt; &lt;/configuration&gt; </code></pre> http://stackoverflow.com/questions/758986/custom-app-config-config-section-handler/759020#759020 4 Answer by Luke Quinane for Custom app.config Config Section Handler Luke Quinane 2009-04-17T04:26:31Z 2009-04-17T04:26:31Z <p>First you add a property in the class that extends Section:</p> <pre><code>[ConfigurationProperty("pages", IsDefaultCollection = false)] [ConfigurationCollection(typeof(PageCollection), AddItemName = "add")] public PageCollection Pages { get { return (PageCollection) this["pages"]; } } </code></pre> <p>Then you need to make a PageCollection class. All the examples I've seen are pretty much identical so just copy <a href="http://nmailserver.svn.sourceforge.net/viewvc/nmailserver/NMail/trunk/NMail/Configuration/NamedServiceCollection.cs?view=markup" rel="nofollow">this one</a> and rename "NamedService" to "Page".</p> <p>Finally add a class that extends ObjectConfigurationElement:</p> <pre><code>public class PageElement : ObjectConfigurationElement { [ConfigurationProperty("title", IsRequired = true)] public string Title { get { return (string) this["title"]; } set { this["title"] = value; } } [ConfigurationProperty("url", IsRequired = true)] public string Url { get { return (string) this["url"]; } set { this["url"] = value; } } } </code></pre> <p>Here are some files from a sample implementation:</p> <ul> <li><a href="http://nmailserver.svn.sourceforge.net/viewvc/nmailserver/NMail/trunk/NMail.Server.Console/NMail.config?view=markup" rel="nofollow">Sample config</a></li> <li><a href="http://nmailserver.svn.sourceforge.net/viewvc/nmailserver/NMail/trunk/NMail/Configuration/NamedServiceCollection.cs?view=markup" rel="nofollow">Collection and element classes</a></li> <li><a href="http://nmailserver.svn.sourceforge.net/viewvc/nmailserver/NMail/trunk/NMail/Configuration/NMailConfiguration.cs?revision=224&amp;view=markup" rel="nofollow">Config section class</a></li> </ul> http://stackoverflow.com/questions/758986/custom-app-config-config-section-handler/759030#759030 0 Answer by JonnyBoats for Custom app.config Config Section Handler JonnyBoats 2009-04-17T04:29:54Z 2009-04-17T04:29:54Z <p>Take a look at this article: <a href="http://basgun.wordpress.com/2009/03/22/get-connection-string-from-web-config-inside-dll/" rel="nofollow">Getting Connection String From Web.Config Inside A DLL Code</a></p> <p>Based upon this sample, you shuld be able to modify the code to pick out any part of the web.config file you want.</p> http://stackoverflow.com/questions/758986/custom-app-config-config-section-handler/759140#759140 3 Answer by marc_s for Custom app.config Config Section Handler marc_s 2009-04-17T05:28:23Z 2009-04-17T05:28:23Z <p>You should also check out Jon Rista's three-part series on .NET 2.0 configuration up on CodeProject.</p> <ul> <li><a href="http://www.codeproject.com/KB/dotnet/mysteriesofconfiguration.aspx" rel="nofollow">Unraveling the mysteries of .NET 2.0 configuration</a></li> <li><a href="http://www.codeproject.com/KB/dotnet/mysteriesofconfiguration2.aspx" rel="nofollow">Decoding the mysteries of .NET 2.0 configuration</a></li> <li><a href="http://www.codeproject.com/KB/dotnet/mysteriesofconfiguration3.aspx" rel="nofollow">Cracking the mysteries of .NET 2.0 configuration</a></li> </ul> <p>Highly recommended, well written and extremely helpful!</p> <p>Marc</p> http://stackoverflow.com/questions/758986/custom-app-config-config-section-handler/760601#760601 0 Answer by John Saunders for Custom app.config Config Section Handler John Saunders 2009-04-17T14:17:38Z 2009-04-17T14:17:38Z <p>Also, if you find yourself creating configuration sections frequently, there's the <a href="http://www.codeplex.com/csd/" rel="nofollow">Configuration Section Designer</a>, a graphical Domain-Specific Language designer for designing configuration sections.</p>