vote up 0 vote down star

Does anyone know how to detect if an instance of a configuration section exists in a .net configuration file without actually having to load the configuration section into memory, and without having to parse the xml file manually - ie, using the System.Configuration namespace.

I have tried using System.Configuration.ConfigurationManager.GetSection(...) but this seems to return a "defaulted" instance of the configuration section, even if it does not exist in the configuration file.

flag
Why does it matter if the section exists or not? Sounds like your design has issues. You're attaching a meaning to the absence of the section that should be determined in some other manner. – Will Nov 5 '08 at 18:23
The existence of the configuration section determines whether we are executing inside an application domain or not, and a piece of common code needs to make a branching decision based on whether that that condition exists or not. – markallanson Nov 5 '08 at 18:24
Not sure what you mean by application domain, as all .NET code executes within an app domain. And whether or not a configuration section exists is not, I would wager, a "best practices" way to determine how your code executes. Bigtime smell here. – Will Nov 5 '08 at 18:34
Without going into deep architectural details here, some processing in the system is delegated to plugins with inside non-default appdomains that have custom config. I believe that you are right though, there is a better way of implementing what I need to do, thanks for the poke! – markallanson Nov 5 '08 at 22:22

1 Answer

vote up 1 vote down

if you are using local config files (as opposed to machine specific) then you could use XML (such as linq to xml) to check the config file by geting the exe codebase from reflection (e.g. Assembly.GetExecutingAssembly().CodeBase)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.