Getting config element from ConfigurationElementCollection
- by Martin
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 exists?
get a specific element?
...given:
YourConfigElement config =
ConfigurationManager.GetSection("YourSectionName") as YourConfigElement ;
Partial answer
Does this work? no, sadly.
foreach (X x in config.XCollection.AsQueryable())
...