我正在开发winrt app
它使用XML for Amazon Product Adversing API等
我的XML在这里:
<ItemLookupResponse xmlns="http://webservices.amazon.com/AWSECommerceService/2013-08-01">
<OperationRequest>...</OperationRequest>
<Items>
<Request>...</Request>
<Item>...</Item>
<Item>...</Item>
<Item>...</Item>
</Items>
我把它用于:
var doc = XDocument.Parse(res);
var itemsNode = doc.Descendants("Item");
foreach ( XElement node in itemsNode)
{
//something
}
“res”是字符串转换的XML
XDocument正确解析。
但是,doc.Descendants(“Item”)返回Nothing
有什么建议吗?