使用RestSharp将XML CDATA反序列化为字符串变量

时间:2011-05-16 20:48:14

标签: c# xml deserialization xml-deserialization restsharp

我正在尝试使用RSS提要并将其反序列化为rssEntry对象列表。

var Client = new RestClient("url here");
Request = new RestRequest { RequestFormat DataFormat.Xml };
var response = Client.Execute<Channel>(Request);
return response.Data.Item;

除了包含CDATA

的内容外,其他内容都会填充

Channel.cs

 public class Channel
 {
    public string Title { get; set; }
    public string Link { get; set; }
    public string AtomLink { get; set; }
    public string Description { get; set; }
    public DateTime LastBuildDate { get; set; }
    public string Generator { get; set; }
    public string Language { get; set; }
    public string UpdatePeriod { get; set; }
    public int UpdateFrequency { get; set; }
    public RssItems Item { get; set; }
}

Item.cs

public class Item 
{
        public string Title { get; set; }
        public string Link { get; set; }
        public string Comments { get; set; }
        public DateTime PubDate { get; set; }
        public string Creator { get; set; }
        public string Category { get; set; }
        public string Description { get; set; }
        public string Content { get; set; }
        public string Guid { get; set; }
        public string CommentRss { get; set; }
        public int SlashComments { get; set; }
  }

我愿意使用RestSharp之外的其他东西,但我正在尝试使用它,希望它是一个很好的简单解决方案。

目前,CDATA的任何字段都返回null。

1 个答案:

答案 0 :(得分:0)

问题是我通过RSS提要读取了xml,并在items类内容中命名了变量。 rss Feed中的实际item元素是content:encoded。

将此变量更改为Encoded修复它,完全是我自己的错。

public class Item 
{
        public string Title { get; set; }
        public string Link { get; set; }
        public string Comments { get; set; }
        public DateTime PubDate { get; set; }
        public string Creator { get; set; }
        public string Category { get; set; }
        public string Description { get; set; }
        public string Encoded { get; set; }
        public string Guid { get; set; }
        public string CommentRss { get; set; }
        public int SlashComments { get; set; }
}