From the MusicBrainz REST service, I get the following xml:
<artist-list offset="0" count="59">
<artist type="Person" id="xxxxx" ext:score="100">
...
Using WCF and XmlSerializationFormat, I'm able to get the type and id attributes... but How do I get the "ext:score" one?
This works:
public class Artist
{
[XmlAttribute("id")]
public string ID { get; set; }
[XmlAttribute("type")]
public ArtistType Type { get; set; }
But this doesnt:
[XmlAttribute("ext:score")]
public string Score { get; set; }
It produces a serialization exception. I've also tried just using "score", but it doesn't work.
Any help?