从 XDocument 中获取后代
我正在尝试从 此网站
元素。这是我的代码:
XDocument netflixPage = new XDocument();
netflixPage = XDocument.Load("http://odata.netflix.com/Catalog/Titles");
foreach (XElement xe in netflixPage.Descendants("entry").ToList())
{
string movieInfo = xe.Value;
}
I am trying to grab all the <entry>
tags from this site. It will load just fine into an XDocument but I cannot seem to grab any of the <entry>
elements. Here is the code I have:
XDocument netflixPage = new XDocument();
netflixPage = XDocument.Load("http://odata.netflix.com/Catalog/Titles");
foreach (XElement xe in netflixPage.Descendants("entry").ToList())
{
string movieInfo = xe.Value;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的代码尝试检索
命名空间中的
entry
元素,但文档在http://www 中包含
entry
元素.w3.org/2005/Atom 命名空间:Your code attempts to retrieve
namespace, but the document contains
entry
elements in theentry
elements in thehttp://www.w3.org/2005/Atom
namespace: