我有XML档案,Im试图与Linq-to-XML教。 其中一个节点载有我无法检索的超文本。
XML类似:
<?xml version="1.0" encoding="ISO-8859-1"?>
<root>
<image><img src="/Images/m1cznk4a6fh7.jpg" /></image>
<contentType>Banner</contentType>
</root>
该守则是:
XDocument document = XDocument.Parse(content.XML);
XElement imageElement = document.Descendants("image").SingleOrDefault();
image = imageElement.Value; // Doesn t get the content, while if I specify .Descendants("contentType") it works
任何想法?