Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
4
votes
2answers
7k views

.NET base type cannot be serialized by WCF

I'm writing a WCF service and want to expose some custom configuration elements (e.g. Custom ConfigurationSection and ConnectionStringSettings) so that I can modify the service's configuration. One of ...
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
1answer
610 views

How to revert an HttpError ConfigurationElement back to “Inherited” using IIS 7 API

Suppose I have the following <httpErrors> collection in a web.config: <httpErrors> </httpErrors> Yep, nice 'n empty. And in IIS 7, my HTTP errors page looks like this: ...
2
votes
3answers
3k views

Getting config element from ConfigurationElementCollection

I have (hopefully) setup ConfigurationElementCollection of my own design with emails as keys. Now what? Hard to find actually on the web. How do I: iterate through it? See if a specific element ...
2
votes
1answer
268 views

Unable to read in my custom .config section

NOTE: this is very very similar to this SO question, but I need some more help. i'm trying to make the following section in my .config file, but i get an exception when trying to access this section. ...
2
votes
2answers
509 views

DateTime property in a ConfigurationElement

I'm wanting to put a DateTime in to the config file, however, I want the DateTime expressed in a specific way. I've seen examples of using a DateTime in a ConfigurationElement (like the example ...
1
vote
1answer
16 views

ConfigurationElement—Combination of Attributes?

Say I have defined a custom AdapterElement : ConfigurationElement with properties Type, Name and Version. Since Name and Version uniquelly identifies the Type property, I would like to enforce the ...
1
vote
1answer
50 views

.NET ConfigurationElementCollection.Add method does not add item to collection

I have a custom configuration section running under ASP.NET 4.0 that I would like to save changes to. The classes involved are: QueueConfiguration: a ConfigurationElement QueueCollection Queues // ...
1
vote
1answer
131 views

How better to map configuration elements to application objects?

I have a .NET application which has a custom configuration to re-construct some classes on startup. That's not a plain (de)serialization, that's more complex and mixed. class FooElement : ...
0
votes
0answers
21 views

ConfigurationElement to object mapping

Currently i've been using Enterprise Library Contrib's TypeConfigurationElement for certain properties in my configuration files to support situations like: <MyObjectList> <MyObject1> ...
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
1answer
341 views

Can't set DefaultValue for ConfigurationProperty of Custom ConfigurationElement type

I have a small problem with DefaultValue for ConfigurationProperty. Here is the part of my XML config : <Storage id="storageId"> <Type>UNC</Type> </Storage> To process ...