Tagged Questions

2
votes
2answers
160 views

Thread safe usage of System.Configuration

Is there an easy method of accessing custom System.Configuration-based configuration data through a thread-safe interface without requiring each execution context from loading/reloading configuration …
2
votes
3answers
610 views

WCF and System.Configuration namespace

I received an error when an referenced .NET Framework 2.0 assembly tried to execute the following line of code in an IIS hosted WCF service: Error Message: exePath must be specified when not …
1
vote
1answer
522 views

Using ASPNet_Regiis to encrypt custom configuration section - can you do it?

I have a web application with a custom configuration section. That section contains information I'ld like to encrypt (was hoping to use ASPNet_RegIIS rather than do it myself). Web.Config: <?xml …
0
votes
1answer
250 views

HowTo: Detect .Net Configuration Section instance without Loading into memory?

Does anyone know how to detect if an instance of a configuration section exists in a .net configuration file without actually having to load the configuration section into memory, and without having …
0
votes
1answer
257 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 nic, but when I am launching my app the next time I can only see the properties that are created in the …
0
votes
3answers
529 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 …