Tagged Questions

9
votes
6answers
3k views

Get the App.Config of another Exe

I have an exe with an App.Config file. Now I want to create a wrapper dll around the exe in order to consume some of the functionalities. The question is how can I access the app.config property in ...
5
votes
2answers
522 views

Why does ConfigurationValidator validate the default value of a ConfigurationProperty even if IsRequired is true?

Let's say I have a configuration property that looks like this. Note that there is no default value. [ConfigurationProperty("x", IsRequired = true)] [StringValidator(MinLength = 1)] public string X { ...
4
votes
3answers
455 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" /> ...
4
votes
2answers
451 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 ...
4
votes
3answers
3k 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 ...
2
votes
2answers
805 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
2answers
214 views

Simple custom config section with collection in .NET4

I'm trying to write a very simple custom configuration section for a .NET4 application. My goal is this: <configuration> <configSections> <section name="myServices" ...
1
vote
1answer
534 views

The best way to get a path to machine.config of a different .NET version

Whats the best way to get a path to .net 2.0 machine.config file, if the application is running on .net 4.0? One way would be to do string manipulation and file system access to replace v4.0* with ...
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 ...
0
votes
2answers
175 views

Getting connection string from App.config and using it in a Linq dataContext

How should I extract the following connection string and apply it to my Linq context? I know the Linq portion, but am weak with the System.Configuration section. <connectionStrings> ...
0
votes
3answers
107 views

How to send a System.Configuration.Configuration object trough WCF

Well I think the title explains for itself. I'm trying to export a configuration object trough the wire, but it looks quite difficult, the class is not serializable and... it's sealed, so no heritage ...
0
votes
1answer
558 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 ...