Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm working with C#, Framework 3.5 (VS 2008).

I'm using the ConfigurationManager to load a config (not the default app.config file) into a Configuration object.

Using the Configuration class, I was able to get a ConfigurationSection, but I could not find a way to get the values of that section.

In the config, the ConfigurationSection is of type System.Configuration.NameValueSectionHandler.

For what it worth, when I used the method GetSection of the ConfigurationManager (works only when it was on my default app.config file), I received an object type, that I could cast into collection of pairs of key-value, and I just received the value like a Dictionary. I could not do such cast when I received ConfigurationSection class from the Configuration class however.

EDIT: Example of the config file:

<configuration>
  <configSections>
    <section name="MyParams" 
             type="System.Configuration.NameValueSectionHandler" />
  </configSections>

  <MyParams>
    <add key="FirstParam" value="One"/>
    <add key="SecondParam" value="Two"/>
  </MyParams>
</configuration>

Example of the way i was able to use it when it was on app.config (the "GetSection" method is for the default app.config only):

NameValueCollection myParamsCollection =
             (NameValueCollection)ConfigurationManager.GetSection("MyParams");

Console.WriteLine(myParamsCollection["FirstParam"]);
Console.WriteLine(myParamsCollection["SecondParam"]);
share|improve this question
Please include your code. – madcapnmckay Aug 11 '10 at 18:05
Edited with the code. thanks for your attention – Liran B Aug 11 '10 at 18:16

4 Answers

In .NET 4, at least, I have managed this (I want to use config files with a COM dll server so of course the exe only Default collection is out the window, just like for you :))

What worked for me:

string pathToConfigDll = @"\blah.blah"; //will load blah.blah.config
ConfigurationManager cm = ConfigurationManager.OpenExeConfiguration(pathToConfig);
ConfigurationSectionGroup sectionGroup = cm.SectionGroups["userSettings"];
ConfigurationSection section = sectionGroup.Sections["blah__.Properties.Settings"];

//note that a direct index to the section returns null as the default collection is not what is expected in a directly loaded config file (I think that is the reason...)
var directlyIndexedSection = cm.Sections["blah__.Properties.Settings"]; //is null

//xml happiness dumped to the console...
Console.WriteLine(section.SectionInformation.GetRawXml());

The structure of your xml file is different to mine which has the various sections nested within a parent section group. Exploring the ConfigManager.Sections (as opposed to through a section group), in my case, reveals an assortment of sections bearing no relation to the structure of the xml file. I think your direct index could be the Config Manager.Sections is the issue - perhaps a section without a section group is not valid? Try indexing section groups with your key.

Hth in some way or another...

share|improve this answer

Suffered from exact issue. Problem was because of NameValueSectionHandler in .config file. You should use AppSettingsSection instead:

<configuration>

 <configSections>
    <section  name="DEV" type="System.Configuration.AppSettingsSection" />
    <section  name="TEST" type="System.Configuration.AppSettingsSection" />
 </configSections>

 <TEST>
    <add key="key" value="value1" />
 </TEST>

 <DEV>
    <add key="key" value="value2" />
 </DEV>

</configuration>

then in C# code:

AppSettingsSection section = (AppSettingsSection)ConfigurationManager.GetSection("TEST");

btw NameValueSectionHandler is not supported any more in 2.0.

share|improve this answer

Try using an AppSettingsSection instead of a NameValueCollection. Something like this:

var section = (AppSettingsSection)config.GetSection(sectionName);
string results = section.Settings[key].Value;

Source: http://social.msdn.microsoft.com/Forums/en-US/csharpgeneral/thread/d5079420-40cb-4255-9b3b-f9a41a1f7ad2/

share|improve this answer
nope this way you will get "Unable to cast object of type 'System.Configuration.DefaultSection' to type 'System.Configuration.AppSettingsSection'." – nerijus Mar 4 at 14:23
@nerijus : come on man ... Of course one of Steven's assumptions is that you actually change the type of the section accordingly ... No offense, but you really could think before commenting. I tried this solution and it works. +1 for Steven – h9uest Apr 3 at 14:58

Here's a good post that shows how to do it.

If you want to read the values from a file other than the app.config, you need to load it into the ConfigurationManager.

Try this method: ConfigurationManager.OpenMappedExeConfiguration()

There's an example of how to use it in the MSDN article.

share|improve this answer
1  
As i said in my post, This is what i did. I received Configuraion class, and from it i received a ConfigurationSection. My question was how can i get the values from that ConfigurationSection object? i didn't ask how to get the Configuration object.. Thanks anyway! – Liran B Aug 11 '10 at 20:32
by the way, in the example you gave me they are not using the Configuration class that comes from OpenMappedExeConfiguration, but they are using the default app.config (which can be used using the .GetSection/.GetConfig methods, but as i said in my post- i did that already. but its no good for me since its good for app.config only). and for the msdn, i could not find the answer to my question there.. – Liran B Aug 11 '10 at 20:35
Ok, the more I look into it, the more I see it isn't easy to do. The basic problem is that you're trying to mix .Net 1.1 configuration style code and 2.0. Read this, it'll point you in the right direction: eggheadcafe.com/software/aspnet/30832856/… – MonkeyWrench Aug 12 '10 at 13:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.