未知错误?对于XDocument.Descendants

时间:2015-02-21 21:08:18

标签: c# windows-runtime linq-to-xml


我正在开发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 有什么建议吗?

0 个答案:

没有答案