Tagged Questions

3
votes
3answers
291 views

How can I use TypeConverters with a ConfigurationSection?

So I've got a ConfigurationSection/ConfigurationElementCollection that has a configuration like this: <mimeFormats> <add mimeFormat="text/html" /> </mimeFormats> And here is ...
2
votes
1answer
76 views

Preserve formatting on Configuration.Save()

I have custom ConfigurationSection and call Configuration.Save() after some modifications against it: var config = ConfigurationManager.OpenMappedExeConfiguration( new ExeConfigurationFileMap() { ...
1
vote
3answers
2k views

Need to create a dynamic ConfigurationSection that also holds the type

I need to create a configuration section, that is able to store key-value pairs in an app.config file and the key-value pairs can be added runtime regardless of their type. It is also important that ...