1

我正在尝试使用 restsharp 连接到 last.fm 休息服务。我可以反序列化示例中找到的简单数据:http ://ws.audioscrobbler.com/2.0/?method=artist.getinfo&artist=Cher&api_key=xxxxxxxxxxxxxxxxxxxxxxx

但是,当我到达艺术家的图像部分时:

<artist> 
  <name>Cher</name> 
  <mbid>bfcc6d75-a6a5-4bc6-8282-47aec8531818</mbid> 
  <url>http://www.last.fm/music/Cher</url> 
  <image size="small">http://userserve-ak.last.fm/serve/34/48511693.png</image> 
  <image size="medium">http://userserve-ak.last.fm/serve/64/48511693.png</image> 
  <image size="large">http://userserve-ak.last.fm/serve/126/48511693.png</image> 
  <image size="extralarge">http://userserve-ak.last.fm/serve/252/48511693.png</image> 
  <image size="mega">http://userserve-ak.last.fm/serve/500/48511693/Cher+Tess.png</image> 

我正在努力让图书馆映射数据。这是我到目前为止的代码:

namespace *******.Core.LastFm
{
    using System.Xml.Serialization;
    using System.Collections.Generic;
    using System;

    public class image
    {
        [XmlAttribute]
        public string Size { get; set; }

        public string Value { get; set; }
    }

    public class ArtistImageCollection : List<image> { }

    public class Artist
    {
        public string Name { get; set; }
        public string Mbid { get; set; }
        public string Url { get; set; }
        [XmlArray]
        public ArtistImageCollection Image;
    }
}

这不起作用。有谁知道如何绑定这个?

[我更新了它以反映 nics 的建议 - 这仍然不起作用]

我从以下网址获得了此代码的基础:http ://www.aaronstannard.com/post/2010/06/14/How-to-Parse-a-Users-Delicious-Feed-with-RestSharp.aspx

w://

4

2 回答 2

2

图像上没有获取/设置

多哈

于 2010-07-26T16:55:57.457 回答
0

您不需要用 [Attribute] 注释 Size 并用 [XmlArray] 注释 Image 或类似的奇怪的东西吗?

于 2010-07-26T15:39:54.010 回答