RSS pubDate总是“01-Jan-01 12:00:00 AM”

时间:2014-07-31 10:59:42

标签: c# rss windows-8.1

我尝试从RSS feed 2.0获取pubDate值但总是=“01-Jan-01 12:00:00 AM” 这是rss feed

 <item>
<title>title</title> 
<description>desc</description>
<link>http://somelink.com</link>
<pubDate>Thu, 31 Jul 2014 11:13:58</pubDate>
<guid></guid>
<enclosure"/>
</item>

我的班级是

public class Item 
    {
        [XmlElement("title")]
        public string Title { get; set; }

        [XmlElement("description")]
        public string Description { get ; set; }

        [XmlElement("pubdate")]
        public DateTime Pubdate { get; set; }

        [XmlElement("link")]
        public string Link { get; set; }
    }

所有项目都正常,除了pubDate总是“01-Jan-01 12:00:00 AM”。 有什么帮助吗?

1 个答案:

答案 0 :(得分:0)

您没有告诉XMLParser有关该属性的格式。 尝试

[XmlElement("pubdate", DataType = "date")]