Possible Duplicate:
Deserializing XML, how do I access attributes?

I am deserializing the following XML:

<root>
  <foo> some content </foo>
  <bar id="someId">someContent</bar>
</root>

Into a Class object below using XMLSerializer.

[XmlRootAttribute("foobar")]
public class foobar
{

    [XmlElementAttribute("foo")]
    public string foo { get; set; }

    [XmlElementAttribute("bar")]
    public string bar { get; set; }        

}

However, this does not pick up someId within the bar tag. What change do I need to make to pick it up as well?

I tried this:

In the class above, I changed the second property to:

[XmlElementAttribute("bar")]
public Bar bar { get; set; } 

And then defined a new class:

[XmlTypeAttribute]
    public class Bar
    {
        [XmlAttribute("id")]
        public string id { get; set; }

        [XmlText]
        public string Value { get; set; }
    }

This still picks up the value but not the Id.

link|improve this question

I think you have to make your 'bar' object something else than a string, because having an attribute doesn't make sense for a string. – jv42 Nov 25 '11 at 8:33
have you tried XmlAttribute without ("id") ? – Steve Nov 25 '11 at 8:35
1  
Same problem: stackoverflow.com/questions/6003847/… – Steve Nov 25 '11 at 8:36
@Steve:I just did. It still won't pick it up – xbonez Nov 25 '11 at 8:36
@Steve: Changing it to XmlAttribute did fix it. The reason I didn't realize it immediately was because of another bug in my code. If you post it as an answer, I'll accept it – xbonez Nov 25 '11 at 8:48
feedback

closed as exact duplicate by casperOne Nov 26 '11 at 5:00

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

1 Answer

up vote 1 down vote accepted

try to use XmlAttribute without ("id") that should fix it.

link|improve this answer
feedback

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