Tagged Questions
4
votes
3answers
452 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" />
...
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() { ...
2
votes
1answer
797 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 ...
1
vote
1answer
131 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 : ...