.NET Type loadable from App.Config - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T22:52:15Zhttp://stackoverflow.com/feeds/question/687466http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/687466/net-type-loadable-from-app-config1.NET Type loadable from App.ConfigC. Ross2009-03-26T20:33:12Z2009-03-26T20:36:10Z
<p>How do I design a type that loads it's properties from the App.Config file in the same way that SMTPClient class, or a TraceListener would? What standards should I follow when doing this?</p>
http://stackoverflow.com/questions/687466/net-type-loadable-from-app-config/687475#6874754Answer by bendewey for .NET Type loadable from App.Configbendewey2009-03-26T20:36:10Z2009-03-26T20:36:10Z<p>Look into the <a href="http://msdn.microsoft.com/en-us/library/system.configuration.configurationsection.aspx" rel="nofollow">ConfigurationSection</a> class and the <a href="http://msdn.microsoft.com/en-us/library/system.configuration.configurationelement.aspx" rel="nofollow">ConfigurationElement</a> class</p>
<p>Here is a nice tutorial article
<a href="http://msdn.microsoft.com/en-us/library/2tw134k3.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/2tw134k3.aspx</a></p>
<p>and here is a snipped of the system.net configuration group from the machine.config</p>
<pre><code><sectionGroup name="system.net" type="System.Net.Configuration.NetSectionGroup, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<section name="authenticationModules" type="System.Net.Configuration.AuthenticationModulesSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
<section name="connectionManagement" type="System.Net.Configuration.ConnectionManagementSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
<section name="defaultProxy" type="System.Net.Configuration.DefaultProxySection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
<sectionGroup name="mailSettings" type="System.Net.Configuration.MailSettingsSectionGroup, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<section name="smtp" type="System.Net.Configuration.SmtpSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
</sectionGroup>
<section name="requestCaching" type="System.Net.Configuration.RequestCachingSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
<section name="settings" type="System.Net.Configuration.SettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
<section name="webRequestModules" type="System.Net.Configuration.WebRequestModulesSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
</sectionGroup>
</code></pre>