Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
3answers
12k 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" ?> ...
4
votes
4answers
12k 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 ...
3
votes
1answer
109 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 ...
2
votes
2answers
994 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 ...
0
votes
1answer
120 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
346 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 ...
0
votes
1answer
621 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... ...