을 얻는 방법, 나는 다음과 같은 XML을 얻을 :뮤직 브레인 REST 서비스에서이있는 XmlAttribute
<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; }
그것은 직렬화 예외를 생성합니다. 나는 또한 "점수"를 사용해 보았지만 작동하지 않습니다.
어떤 도움이 필요합니까?