Custom app.config Config Section Handler - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T17:52:25Zhttp://stackoverflow.com/feeds/question/758986http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/758986/custom-app-config-config-section-handler3Custom app.config Config Section HandlerB. Tyndall2009-04-17T04:10:22Z2009-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><?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<section name="XrbSettings" type="Xrb.UI.XrbSettings,Xrb.UI" />
</configSections>
<XrbSettings>
<pages>
<add title="Google" url="http://www.google.com" />
<add title="Yahoo" url="http://www.yahoo.com" />
</pages>
</XrbSettings>
</configuration>
</code></pre>
http://stackoverflow.com/questions/758986/custom-app-config-config-section-handler/759020#7590204Answer by Luke Quinane for Custom app.config Config Section HandlerLuke Quinane2009-04-17T04:26:31Z2009-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&view=markup" rel="nofollow">Config section class</a></li>
</ul>
http://stackoverflow.com/questions/758986/custom-app-config-config-section-handler/759030#7590300Answer by JonnyBoats for Custom app.config Config Section HandlerJonnyBoats2009-04-17T04:29:54Z2009-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#7591403Answer by marc_s for Custom app.config Config Section Handlermarc_s2009-04-17T05:28:23Z2009-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#7606010Answer by John Saunders for Custom app.config Config Section HandlerJohn Saunders2009-04-17T14:17:38Z2009-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>