I have the following XML structure:
<Response>
<Value Name="ID">1</Value>
<Value Name="User">JSmith</Value>
<Value Name="Description">Testing 123</Value>
</Response>
How can I deserialize this so that the value names are properties on the class, and the text values are the values of the properties?
Note that the value names never change, so Name="ID"
will always exist, for example.
Here is my class so far:
[Serializable]
[XmlRoot("Response")]
public class ReportingResponse
{
// [What goes here?]
public string ID { get; set; }
// [...]
public string User { get; set; }
// [...]
public string Description { get; set; }
}
That XML is structured as a collection of name/value pairs rather than as a class with predefined properties, and it would be easier and more natural to deserialize it as such.
If you're determined to deserialize into a class, assuming you're using
XmlSerializer
, you could introduce a proxy array of name/value pairs for that purpose, like so:And then some reflection to automatically load up the array:
This fills the array with all string-valued property names and values. You might want something more intelligent, in which case manually filling the array, labeling properties with a custom attribute indicating those to be exported, or whatever, might be more appropriate.