.NET Type loadable from App.Config - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T22:52:15Z http://stackoverflow.com/feeds/question/687466 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/687466/net-type-loadable-from-app-config 1 .NET Type loadable from App.Config C. Ross 2009-03-26T20:33:12Z 2009-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#687475 4 Answer by bendewey for .NET Type loadable from App.Config bendewey 2009-03-26T20:36:10Z 2009-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>&lt;sectionGroup name="system.net" type="System.Net.Configuration.NetSectionGroup, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"&gt; &lt;section name="authenticationModules" type="System.Net.Configuration.AuthenticationModulesSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/&gt; &lt;section name="connectionManagement" type="System.Net.Configuration.ConnectionManagementSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/&gt; &lt;section name="defaultProxy" type="System.Net.Configuration.DefaultProxySection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/&gt; &lt;sectionGroup name="mailSettings" type="System.Net.Configuration.MailSettingsSectionGroup, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"&gt; &lt;section name="smtp" type="System.Net.Configuration.SmtpSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/&gt; &lt;/sectionGroup&gt; &lt;section name="requestCaching" type="System.Net.Configuration.RequestCachingSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/&gt; &lt;section name="settings" type="System.Net.Configuration.SettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/&gt; &lt;section name="webRequestModules" type="System.Net.Configuration.WebRequestModulesSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/&gt; &lt;/sectionGroup&gt; </code></pre>