DCSIMG
ConfigurationSection - Rotem Bloom's Blog

Rotem Bloom's Blog

Share knowledge on .NET and web development

News

About Me

Glad to help and share knowledge on .NET and also huge fan of Dream Theater.

Contact me via messenger

View Rotem Bloom's profile on LinkedIn

Dream Theater Pics

Blogs I Read

Browse by Tags

All Tags » ConfigurationSection (RSS)
Sending .NET configuration section over the wire using WCF
Hi, Have you ever needed to implement configuration sections for the application configuration file? Well probably you have. Let's say you want to read the configuration section from your *.config file and send it thru WCF service. The default behavior when working with configuration object is use the System.Configuration namespace that doesn't support WCF. So the question is what can we do? A nice solution is to use the IConfigurationSectionHandler interface and mark the section implementation...