Specifies configuration section and namespace declarations.
0
votes
2answers
44 views
Store same key in Machine.config and App.config
I'm holding a custom configuration section in machine.config of following structure:
<CustomSettings>
<add key="testkey" local="localkey1" dev="devkey" prod="prodkey"/>
...
0
votes
0answers
19 views
How to insert configuration section
I can insert a section under the configSections node in the app.config file using the following:
var section = config.GetSection("Telerik.Reporting");
if (section == null)
...
3
votes
1answer
234 views
Encrypting custom configuration settings
I'm having some troubles encrypting a configuration section. We use a package from an external supplier and the web.config is structured in the following way:
web.config
<appSettings ...
0
votes
1answer
225 views
Reading from configSection attribute of type “Type”
I've a section like this
<mySection type="Namespace.MyClass, AssemblyName" />
in my code I need to create an Instance of MyClass, so what I do is something like that:
string type = ...
0
votes
1answer
449 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 appears the custom ...
14
votes
3answers
18k views
Custom app.config Config Section Handler
What is the correct way to pick up the list of "pages" via a class that inherits from System.Configuration.Section if I used a app.config like this?
<?xml version="1.0" encoding="utf-8" ?>
...
2
votes
2answers
1k views
Is it possible to define <configSections> in a dependent dll's application config
I have a custom .NET addin for an application and I am trying to create configSections for the addin's config file. The trouble is I am not able to read that section If load the configuration using ...
2
votes
1answer
1k views
Providing intellisense/xsd validation to configsections
in a small c# project, I'm trying to create a simple custom configsection.
I followed the instructions in CodeProject: Unraveling the Mysteries of .NET 2.0 Configuration and everything work nicely... ...
7
votes
3answers
18k views
Storing values in the web.config - appSettings or configSection - which is more efficient?
I'm writing a page that can use a couple of different themes, and I'm going to store some information about each theme in the web.config.
Is it more efficient to create a new sectionGroup and store ...