I use this object
using System.Configuration;
using System.Xml;
public class MyConfigElement : ConfigurationElement
{
/* ... some code for accessing the attributes */
public static MyConfigElement Get(XmlReader reader)
{
MyConfigElement element = null;
if (reader == null){return element;}
try
{
element = new MyConfigElement();
element.DeserializeElement(reader, false);
}
catch (Exception ex){}
return element;
}
When I invoke the function Get() with an XmlReader pointing on a document with like this one:
<add feature="MyFeature" analysis="Enabled" standAlone="Hidden" recheck="Enabled" />
I got throwned the exception "add" attribute is not recognized... thus nothing is loaded...
I don't understand well since "add" is the name of the xml tag, and not of an attribute... Any help appreciated