Tagged Questions

0
votes
2answers
57 views

Sections must only appear once per config file! why???

hi, I'm getting the following exeption: "Sections must only appear once per config file. See the help topic for exceptions. " my configuration file look like this: <configS …
0
votes
2answers
17 views

ConfigurationSection - Custom Section is undefined - Why?

Hi, I'm trying to build a custom configuration and with some reason, I can't get it work. I'll appreciate if anyone can see where my problem is. Here is the code: public cla …
0
votes
1answer
14 views

Can you override system.serviceModel configuration section?

Hi, We are trying to create a "proxy" class that would serve the WCF service with its configuration properties. Because we can't store those properties in the app.config file, i …
0
votes
1answer
20 views

ConfigurationErrorsException in a console app

The entry 'MyCustomElement' has already been added. C:\Projects\Sandbox\Sandbox.Console\bin\Debug\Sandbox.Console.vshost.exe.config line 52 I'm a bit stumped on this one. This c …
0
votes
1answer
57 views

Saving Configuration Section Error - Elements are merged as attributes

I have created a configuration section designer project to represent nodes of a custom section necessary to read and save from my web application. I am able to successfully create …
1
vote
4answers
565 views

How to: Use a ConfigurationSection without loading it via the GetSection call

I would like to load a specific ConfigurationSection but the way the CLR loads the assemblies is giving me some trouble: My CustomConfigurationSection definition is on a specific …
0
votes
0answers
126 views

Forcing ConfigurationManager to reload all sections

I am writing a configuration system in which the app.config file is dynamically constructed from various config fragments distributed across multiple locations. The system currentl …
0
votes
1answer
117 views

web.config custom section inheritance

I'm trying to get a custom web.config section to get inherited by an application's web.config in a website subfolder. The custom section works fine in the main website, but it app …
0
votes
1answer
208 views

Programatically adding sections to the configuration read from app.config

I am working on a component/assembly that is to be distributed to other developers and included in their systems. In order to minimize the work they have to do, all configuration …
0
votes
1answer
615 views

Custom Configuration, ConfigurationElements, and ConfigurationProperties

I've been scouring the net for the last 3 days, and can't find any reference to this question. I've created a custom configuration class to be used with my app.config. Everything …
-1
votes
0answers
109 views

ASP.NET custom config entries / ConfigurationSections + business logic validation?

Hi folks, i've got some custom config entries in my .config files. All loads/works fine. I was wondering if there's a proper way to check the data that has been provided -- adding …
2
votes
3answers
662 views

Help with using ConfigurationSection to properly read from a config file

I'm trying to create classes to read from my config file using ConfigurationSection and ConfigurationElementCollection but am having a hard time. As an example of the config: &l …
0
votes
3answers
510 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 a …