0

XML 要素をループして、値をオブジェクトのメンバー変数に代入しようとしています。以下は私が試したことです。ただしSelectSingleNode()返ってきNULLます。data.Any はXmlElement配列です (サービスによって返されます)。を使用してみましたXmlNamespaceManagerが、data.Any は ではないXmlDocumentため、NameTable. 私は何を間違っていますか?

コード:

foreach (XmlElement item in data.Any)
{
    result.CorrelationID = item.SelectSingleNode("CorrelationID").InnerText;
}

XML:

<CorrelationID xmlns="http://www.host.com/folder/anotherFolder">9B36D7A7EDD26A22</CorrelationID>
<EmployerRef xmlns="http://www.host.com/folder/anotherFolder">1235/AN612</EmployerRef>
<Name xmlns="http://www.host.com/folder/anotherFolder">
<Ttl>MS</Ttl>
<Fore>NameFirst</Fore>
<Sur>NameLast</Sur>
</Name>
<PayId xmlns="http://www.host.com/folder/anotherFolder">FLDA/12</PayId>
<NINOToUse xmlns="http://www.host.com/folder/anotherFolder">SL3747A</NINOToUse>
<MessageID xmlns="http://www.host.com/folder/anotherFolder">3</MessageID>
4

1 に答える 1

1
foreach (XmlElement item in data.Any)
{
    XmlDocument doc = item.OwnerDocument;
    XmlNamespaceManager nsmgr = new XmlNamespaceManager(doc.NameTable);
    nsmgr.AddNamespace("af", "http://www.host.com/folder/anotherFolder");
    result.CorrelationID = item.SelectSingleNode("af::CorrelationID", nsmgr).InnerText;
}
于 2013-07-11T23:46:29.050 に答える