我正在尝试从网站上阅读实时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();
}
我得到的错误是:
找不到类型或名称空间名称。
请帮助!
答案 0 :(得分:0)
WebClient
。请改用HTTPClient。
有关Windows应用商店应用中支持和不支持的内容的详细信息,请参阅MSDN上的.NET for Windows Store apps overview文章。