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

link|improve this question

does my question inspires no one ? :-( – Stephane Rolland Sep 8 '11 at 8:51
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.