1

XML:

<entry xmlns="http://www.w3.org/2005/Atom" xmlns:gd="http://schemas.google.com/g/2005" xmlns:media="http://search.yahoo.com/mrss/" xmlns:yt="http://gdata.youtube.com/schemas/2007">
    ...
   <author>
      <name>Seamless</name>
      <uri>https://gdata.youtube.com/feeds/api/users/SeamlessR</uri>
   </author>

代码:

var ns = XNamespace.Get("http://www.w3.org/2005/Atom");
var name = xDoc.Descendants(ns + "entry").First().Element("author").Element("name").Value;

它说Object reference not set to an instance of an object.

4

1 回答 1

3

您正在使用Element("author")并且Element("name")好像它们不在名称空间中。命名空间将默认为与 相同的命名空间entry,因此您需要:

var ns = "http://www.w3.org/2005/Atom"; // Just use an implicit conversion
var name = xDoc.Descendants(ns + "entry")
               .First()
               .Element(ns + "author")
               .Element(ns + "name")
               .Value;
于 2013-11-11T10:25:00.043 回答