0

我正在尝试从网站读取实时 RSS 提要。我正在使用以下代码。

public static List<RssNews> Read(string url)
{
    var webClient = new WebClient();//error line

    string result = webClient.DownloadString(url);
    XDocument document = XDocument.Parse(result);
    return (from descendant in document.Descendants("item")
    select new RssNews()
        {
            Description = descendant.Element("description").Value,
            Title = descendant.Element("title").Value,
            PublicationDate = descendant.Element("pubDate").Value
            }).ToList();
        }

我得到的错误是:

找不到类型或命名空间名称。

请帮忙!

4

1 回答 1

0

WebClientWindows 应用商店应用程序不支持。请改用HTTPClient

有关 Windows 应用商店应用程序支持和不支持的更多信息,请参阅 MSDN 上的.NET for Windows 应用商店应用程序概述文章。

于 2013-10-31T19:36:31.550 回答