我想使用errorCode
找到XElement
节点的值。请指教。
<registration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<errorCode>201498</errorCode>
<errorMessage>XML response de-serialization error. Details: XML ??(1, 569)?????</errorMessage>
</registration>
答案 0 :(得分:0)
您只需要将xml加载到XElement中并调用Element方法来检索值
//Load from file location
var errFile = XElement.Load("C:\\YourFile.xml");
//Get Element value from xml
var errorCode = (string)_x.Element("errorCode");