Tagged Questions

4
votes
3answers
482 views

ConfigurationElementCollection with a number of ConfigurationElements of different type

Is it possible to have a CollectionElementCollection with a number of different by type CollectionElements, e.g.: <collection> <add type="MyType1, MyLib" Type1SpecificProp="1" /> ...
3
votes
2answers
824 views

How to load back a dynamically created settingsproperty next time?

I created a way to dynamically add SettingsProperty to a .NET app.config file. It all works nicely, but when I am launching my app the next time I can only see the properties that are created in the ...
2
votes
1answer
79 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
1answer
135 views

How better to map configuration elements to application objects?

I have a .NET application which has a custom configuration to re-construct some classes on startup. That's not a plain (de)serialization, that's more complex and mixed. class FooElement : ...
0
votes
0answers
37 views

How can I detect value syntax errors in app.config files?

I need to improve the reporting of errors in app.config files. I have a tiny test app that includes a setting of type "int". If I change its value in app.config to something that isn't a valid ...