如何从不同的网站获取Rss源到Windows手机应用程序?

时间:2016-07-29 10:50:21

标签: c# windows-phone-8.1 rss rss-reader

链接到示例图片rss feeds from 1st4fans of Manchester United edition 我是c#中的新手,想从不同的网站获取我的Windows手机应用程序。 我的主要兴趣是获取图像,标题和描述。 该应用的链接是here

1 个答案:

答案 0 :(得分:0)

查看SyndicationFeed课程。 以下是我自己的应用程序中的一个示例:

    HttpClient client = new HttpClient();
    String str = await client.GetStringAsync(new Uri("http://www.plasticsoldierreview.com/RSS/PlasticSoldierReview.xml"));

    SyndicationFeed feed = new SyndicationFeed();
    feed.Load(str);

    foreach (SyndicationItem item in feed.Items)
    {
      // Extract the information from the SyndicationItem object ....
    }