I have some Xml that I need to deserialize into an object. The Xml is:

<Person>
  <Type id="1234">Bob</Type>
</Person>

and the classes are:

public class Person { public Type Type; }
public class Type {
   [XmlAttribute("id")]
   public string id;
   // another property for value "Bob" here, such as:
   public string value;  // ????
}

I'd like to deserialize this Xml using XmlSerializer.Deserialize, into the concrete objects above (avoiding using XPath, etc.)

What Xml attribute can I decorate the "Type" class with so that I have not only an "id" attribute but also a value ("Bob")?

link|improve this question

Where is the value "Bob" being stored in C#? – ChaosPandion Jul 14 '11 at 16:23
that's just it.. it's not right now. I need to know how to represent it in the object, and which XmlAttribute (if any) to mark it with. – dotNetkow Jul 14 '11 at 16:25
You really need to rename Type to PersonType or something because it conflicts with System.Type – Jalal Aldeen Saa'd Jul 14 '11 at 16:32
yes, of course. 'Person' was just a sample class. – dotNetkow Jul 14 '11 at 16:38
feedback

1 Answer

up vote 1 down vote accepted

You would have to add a property like

[XmlText]
public string Text;
link|improve this answer
ah, got it. I knew it was something simple! thanks! – dotNetkow Jul 14 '11 at 16:27
feedback

Your Answer

 
or
required, but never shown

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