Tagged Questions
The configurationsection tag has no wiki summary.
6
votes
3answers
1k views
Loading a ConfigurationSection with a required child ConfigurationElement with .Net configuration framework
I have a console application that is trying to load a CustomConfigurationSection from a web.config file.
The custom configuration section has a custom configuration element that is required. This ...
5
votes
2answers
2k views
How to get the values of a ConfigurationSection of type NameValueSectionHandler
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 ...
4
votes
1answer
4k views
How do you use sections in c# 4.0 app.config?
I want to use my app config to store the settings for 2 companys, and i'd prefer if it was possible to use a section to seperate the data for one from the other rather then giving them diffrent key ...
4
votes
2answers
3k 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:
...
3
votes
3answers
291 views
How can I use TypeConverters with a ConfigurationSection?
So I've got a ConfigurationSection/ConfigurationElementCollection that has a configuration like this:
<mimeFormats>
<add mimeFormat="text/html" />
</mimeFormats>
And here is ...
3
votes
2answers
1k views
Can't load a manifest resource with GetManifestResourceStream()
I've created a custom configuration section using XSD. In order to parse the config file that follows this new schema, I load the resource (my .xsd file) with this:
public partial class ...
3
votes
2answers
3k 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 works fine. The ...
2
votes
2answers
29 views
Create or edit custom configuration section at runtime
I have a custom configuration section, something like:
<fooSection>
<foo>
<add bar="cow" />
<add bar="dog" />
<add bar="goat" />
</foo>
...
2
votes
3answers
178 views
Read web.config section to List
I have this in a web.config :
<MySection>
<Setting1 Value="10" />
<Setting2 Value="20" />
<Setting3 Value="30" />
<Setting4 Value="40" />
...
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
464 views
Default Accessor Needed: Custom ConfigurationSection
I am totally confused by a simple Microsoft error message.
When I run XSD.exe against an assembly that contains a custom ConfigurationSection (which in turn utilizes a custom ConfigurationElement and ...
2
votes
1answer
354 views
Read settings / sections from the web.config or app.config file
I have many Connection strings in my web.config file. I also have a "dataConfiguration" setting in the same file which specifies what database my app connects to.
How do I read the "defaultDatabase" ...
2
votes
1answer
273 views
How to define a ConfigurationSection
So this a new one for me.
I'm trying to define a ConfigurationSection class in my class library that pulls from App.Config in my WinForms app. I've never done this before but from following examples ...
2
votes
1answer
403 views
Can I specify a range with the IntegerValidator attribute on a custom ConfigurationSection?
I have a class containing the following ConfigurationSection:
namespace DummyConsole {
class TestingComponentSettings: ConfigurationSection {
[ConfigurationProperty("waitForTimeSeconds", ...
1
vote
3answers
67 views
custom ConfigurationSection
I use IConfigurationSectionHandler interface to get information about my custom config section. But it's deprecated and I want to use ConfigurationSection instead.
How to create custom ...
1
vote
2answers
41 views
Does there exist any tool to generate strongly-typed classes for .Net configuration?
I'm looking for a tool to generate strongly-typed classes from XML.
I would like to define XML configuration (section, ConfigurationElements etc.) and then generate classes that could handle my ...
1
vote
1answer
2k views
ConfigurationSection ConfigurationManager.GetSection() always returns null
I am trying to learn how to use the ConfigurationSection class. I used to use the IConfigurationSectionHandler but released that it has been depreciated. So being a good lad I am trying the ...
1
vote
1answer
707 views
Correct implementation of a custom config section with nested collections?
In a web application, I want to be able to define some mapping using a config section like this :
<configuration>
<configSections>
<sectionGroup name="MyCustomer">
...
1
vote
0answers
82 views
Is a dynamic ConfigurationSection possible in a simple manner?
In .NET 1.0, IConfigurationSectionHandler offered a clean, single method interface to implementing a configuration handler.
In .NET 2, ConfigurationSection came along, a great lumbering beast of ...
1
vote
0answers
145 views
What are the compatibility requirements for a property type when used with the ConfigurationProperty attribute?
I would like to serialize and deserialize a System.Version object as part of my application's custom configuration section and I am attempting to do so with the following property declaration:
public ...
1
vote
2answers
1k views
Custom Configuration Collection - Unrecognized element 'addService'
Example from MSDN on making a custom config section that should work as follows,
class RemoteServiceSection : ConfigurationSection
{
[ConfigurationProperty("remoteServices", ...
1
vote
0answers
32 views
Customized ConfigurationSection in Derived Project
I created a base library where my customized configuration section is located. This works fine so far - also in derived libraries:
<MySection>
<Tooling>
<add Key="asdf" ...
1
vote
1answer
404 views
How to read system.webserver configuration section?
Is there any 'nice' way to read configuration section group of IIS7 by using WebConfigurationManager o anything?
I tried to read the authorization section but WebConfigurationManager.GetSection() ...
1
vote
1answer
544 views
Intellisense for custom config section problem with namespaces
I have just rolled a custom configuration section, created an accompanying schema document for Intellisense and added it to the Web.config's Schemas property as per Michael Stum's answer to another ...
1
vote
1answer
380 views
System.Configuration.ConfigurationSection not available under a class library
I'm migrating a piece of functionality from my App_Code directory to a separate project that's going to build a class library to be referenced by my web app. One of my classes in the App_Code piece ...
1
vote
0answers
446 views
Calling Save on a Configuration obj with a custom sectiongroup of type NameValueSectionHandler
I've got aConfiguration object that I can easily read and write settings from and call Save(ConfigurationSaveMode.Minimal, true) on and that typically works just fine.
However, I now have a config ...
1
vote
2answers
3k views
Create Virtual Directory and Set Permissions IIS7 - Cannot read configuration file due to insufficient permissions
I am trying to create a virtual directory and set it's permissions using IIS7 and C#. Here is a sample of my code:
using (ServerManager serverManager = new ServerManager(webSite))
{
...
1
vote
1answer
1k views
How can I solve “Unrecognized element 'elementName'. (line x) (line x)”?
I have the following code
var section = new CustomConfigurationSection();
section.SectionInformation.Type = "System.Configuration.NameValueFileSectionHandler";
...
1
vote
2answers
1k views
Sections must only appear once per config file! why?
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:
<configSections>
...
1
vote
0answers
774 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 currently works as follows:
...
1
vote
4answers
1k 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 assembly which ...
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
0answers
18 views
Why does configuration section programmatic update insert “clear” tag to items collection?
I have Configuration Elements Collection implementation
class MyCollection : System.Configuration.ConfigurationElementCollection
{
public MyElement this[int index]
{
get { return ...
0
votes
0answers
34 views
Using differents versions custom configsections in .NET
I have any component (assembly) in Custom Framework Company, that uses a custom configsection.
Now, I'm migrating to new version. In machine.config there was a custom config section that use the ...
0
votes
1answer
35 views
Not able to save changes to config file
I've been following this Stackoverflow topic. Everything works on the read side. I get a collection which I transform into a dictionary of the section contents. I publish this to other projects. The ...
0
votes
1answer
53 views
GetSection object cannot be cast to IDictionary<>
I hope I'm just missing something simple. I need to read/write to a section of my exe.config file. I have this in my code:
var appConfiguration = ...
0
votes
2answers
43 views
Cannot find my config file
I need to read/write to a config file not related to any exe. I'm trying this:
var appConfiguration = ConfigurationManager.OpenMappedExeConfiguration(new ExeConfigurationFileMap() { ...
0
votes
2answers
186 views
ConfigurationProperty is inaccessible due to its protection level
I wanna read/write (and save) application's configuration file in program
The app.config is like this:
<configuration>
<configSections>
<section name="AdWordsApi" ...
0
votes
0answers
76 views
How to specify alternate .config file programmatically?
I have a custom configuration section, and i'm constructing some unit tests for it. I'd like to be able to specify, somehow, different .config files programatically to test. Is there a way to do this?
...
0
votes
1answer
80 views
aspnet_regiis -pe cannot find my configuration section in .net v4.0.30319
I've added a new Settings.settings file to my ASP.NET Webclient project; I am having a problem encrypting the section. In the cmd window positioned to this directory:
...
0
votes
1answer
47 views
How to read an Internal ConfigurationSection from Web.Config in ASP.NET
I am trying to read a Microsoft defined ConfigurationSection:
Microsoft.ApplicationServer.Caching.DataCacheClientSection
but the type is internal so I cannot access it in the conventional way.
...
0
votes
1answer
40 views
C# can i keep the config section handlers in a different assembly?
I have a console app client, which is calling a method on another assembly, this other assembly requires some configuration info to be initialized, can i keep the section handlers of such configs in ...
0
votes
0answers
54 views
Using Configuration Section Designer with Nlog Section
i have a specific case which i will have to add, edit and delete data in the nlog Section in the app config,
i thought of using Configuration Section Designer to help me do that, but then i found out ...
0
votes
0answers
25 views
ConfigurationSection for NameValueSectionHandler
I have a custom section using NameValueSectionHandler, in a config file (called AddinApp.config).
Programatically, I want a get a value of key ImpersonationWcfServices.Password.
var localdllPath = ...
0
votes
1answer
124 views
How do I use .NET custom ConfigurationElement properties on descendent elements?
How can I get and use an attribute set in the parent ConfigurationSection in the descendent CustomSetting element? I need this attribute when the CustomSetting element is returning the Value ...
0
votes
0answers
141 views
Replacing custom sections in app config file in a deployment project in VS2008
I have created a custom section for my config file:
namespace ProgressiveMedia.SitePlatform.Infrastructure.Configuration
{
using System.Configuration;
/// <summary>
/// Endeca ...
0
votes
2answers
352 views
Loop through the configrationsection to read it's elements using C#
I have a configuration file, something like:
<logonurls>
<othersettings>
<setting name="DefaultEnv" serializeAs="String">
<value>DEV</value>
...
0
votes
1answer
85 views
Creating customisable configuration using .NET
I'm trying to create some typed configuration similar to the following snippet...
<logging application="Global Application Name">
<defaultLogger name="default" genericOption="XXX" ...
0
votes
1answer
463 views
C# Custom Config Section
I have a custom config section:
<myServices>
<client clientAbbrev="ABC">
<addressService url="www.somewhere.com" username="abc" password="abc"/>
...
0
votes
2answers
248 views
How to rename sections in app.config? Section name does not work
isn't it possible to rename tags within the app.config?
If I use the following
...
<sectionGroup name="common">
<section name="logging" type="Common.Logging.ConfigurationSectionHandler, ...