从 MusicBrainz REST 服务,我得到以下 xml:
<artist-list offset="0" count="59">
<artist type="Person" id="xxxxx" ext:score="100">
...
使用 WCF 和 XmlSerializationFormat,我可以获得类型和 id 属性……但是如何获得“ext:score”呢?
这有效:
public class Artist
{
[XmlAttribute("id")]
public string ID { get; set; }
[XmlAttribute("type")]
public ArtistType Type { get; set; }
但这不是:
[XmlAttribute("ext:score")]
public string Score { get; set; }
它产生一个序列化异常。我也试过只使用“分数”,但它不起作用。
有什么帮助吗?