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 に答える