0

我正在 Windows 8 中(在 C# 中)编写一个 RSS 阅读器,我正在尝试将 SyndicationFeed 对象传递给 XDocument。有谁知道如何做到这一点?

到目前为止,我有这个。

SyndicationItem currentFeed = new SyndicationItem();

/* ... */

currentFeed = client.RetrieveFeedAsync(uri);
4

1 回答 1

0

您必须将其成员解析为 xml 元素

var client = new SyndicationClient;
Stream st = await client.RetrieveFeedAsync(“http://example.com/feed.rss”);

using (StreamReader sr = new StreamReader(st)) {
   string rss = sr.ReadToEnd();

}

于 2012-05-20T10:23:16.587 回答