Wie man einen einzelnen Knotenwert aus einer XML-Datei liest

Hallo, ich versuche, Wert aus XML zu bekommen, aber es zeigt Knoten Null.

Hier ist meine XML-Datei.

<?xml version="1.0" encoding="utf-8"?>
<result xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="https://www.cfhdocmail.com/TestAPI2/Result.xsd https://www.cfhdocmail.com/TestAPI2/Result.xsd" xmlns="https://www.cfhdocmail.com/TestAPI2/Result.xsd">
  <data>
    <key>MailingGUID</key>
    <value>0aa2b2e3-7afa-4002-ab2f-9eb4cbe33ae7</value>
  </data>
  <data>
    <key>OrderRef</key>
    <value>52186</value>
  </data>
</result>

ich möchte bekommen"MailingGUID" Wert.

Hier ist der Code, den ich ausprobiert habe:

  private void readXML()
    {
        XmlDocument xml = new XmlDocument();
        // You'll need to put the correct path to your xml file here
        xml.Load(Server.MapPath("~/XmlFile11.xml"));

        // Select a specific node
        XmlNode node = xml.SelectSingleNode("result/data/value");
        // Get its value
        string name = node.InnerText;


    }

Bitte sag mir, wie ich dazu kommeMailingGUID Wert.

Vielen Dank

Antworten auf die Frage(2)

Ihre Antwort auf die Frage