Tagged Questions
The custom-configuration tag has no wiki summary.
6
votes
4answers
431 views
How to read this custom configuration from App.config?
How to read this custom configuration from App.config?
<root name="myRoot" type="rootType">
<element name="myName" type="myType" />
<element name="hisName" type="hisType" />
...
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" />
...
3
votes
2answers
423 views
When is using the <appSettings> section preferable to a custom configuration section?
When creating my application's or library's configuration, I generally prefer using a custom configuration section over the <appSettings> section for the following reasons.
Framework ...
3
votes
1answer
2k views
ConfigurationManager.GetSection returning null for appparently correct 'path'
This is regarding a web.config file
Here's the ConfigSection
<configSections>
<sectionGroup name="HttpExceptionHandler">
<section name="errorLog" ...
2
votes
1answer
53 views
Recursive Custom Configuration in c#
I am trying to create a custom configuration section that follows the following recursive structure:
<monitorSettings>
<monitor description="description1" />
<monitor ...
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
140 views
Unrecognized element exception with custom C# config
I have the following bits in App.config for a .NET 3.5 Windows Service:
<configSections>
<section name="ConfigurationServiceSection" ...
1
vote
1answer
114 views
Unrecognized element 'add' error when reading web.config
When I do this ConfigurationManager.GetSection("SectionA/sectionD") I receive this error:
Unrecognized element 'add'
I'd like read all "add" element from this section to create a collection.
...
1
vote
2answers
217 views
Migrate Custom ConfigSection in C#
Hello from a long time lurker, first time poster.
I am working on a C# app with a custom config section to save ftp account information. When I come out with a new revision, all the information saved ...
0
votes
1answer
24 views
Implicit ConfigurationElementCollection sections
The System.Configuration connection string configuration classes define:
ConnectionStringsSection : ConfigurationSection
ConnectionStringSettingsCollection : ConfigurationElementCollection
...
0
votes
1answer
67 views
ConfigurationElementCollection and Linq
I've written some custom configuration collections, elements etc. Now, I'd like to do a simple Linq statement:
ServerDetails servers = ConfigurationManager.GetSection("serverDetails") as ...
0
votes
2answers
138 views
Can't Get Custom Configuration Section to Work
I am trying to create a custom configuration that looks like this.
<configuration>
<configSections>
<section name="actions" type="ConfigurationTest.ActionsConfig, ...
0
votes
2answers
105 views
Add custom configuration Element at runtime
Is it possible to add an custom configuration element at runtime.
Here is my app.config file
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
...
0
votes
1answer
98 views
Can custom applicationSettings sections be configured using the IIS 7 Configuration Editor?
I'd like to edit application-specific settings by using the IIS 7 Configuration Editor. The settings are stored in an applicationSettings section, the kind automatically added for you when using ...
0
votes
1answer
138 views
Custom configuration section and app.config
I have some incoming XML documents, I need to check attributes that are configurable in this coming XML and if the attribute is not there in the XML document being checked add it.
The attributes to ...
0
votes
1answer
63 views
Accessing Custom Configurations in NUnit class
I'm really banging my head onto this one. I can't make the Custom Configuration to work with NUnit. It kept on failing to read the configuration file. I'm currently making a logging class.
I followed ...
0
votes
2answers
558 views
Nesting custom configuration element collections
I'm trying to implement a custom configuration solution for an asp.net project I'm currently involved in.
Here is the configuration declaration
<sectionGroup name="WebsiteConfig" ...
0
votes
1answer
122 views
Problem with Custom Configuration Settings
I added a custom section to my app.config file for a Windows Forms Application. I created the class to extend the configuration file:
CustomFields myCustomFields = ...
0
votes
2answers
180 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 console app has had ...
0
votes
1answer
252 views
Moving a custom configuration group to a separate file
I've recently wrote a rather large custom configuration group. I'm curious if it is possible to move this configuration to a separate file via the following:
<configuration>
...