无法在 windows Phone 通用应用程序中解析 xml

Unable to parse xml in windows Phone universal app

我想解析以下 XML,但无法解析。我已经检查了所有我可以检查的可能性。

    <?xml version="1.0" encoding="utf-8"?>

<toast>

  <visual>

    <binding template="ToastText01">

      <text id="1">Test message</text>

      <text id="section">TRS</text>

    </binding>

  </visual>

</toast>

我尝试解析根元素但收到空值

 string  xml = "<?xml version=\"1.0\" encoding=\"utf-8\"?> <toast > <visual> <binding template = \"ToastText01\" ><text id = \"1\" > Test message </text > <text id = \"section\"> tias-request-show </text> </binding ></visual> </toast> ";

    XDocument xdoc = XDocument.Parse(xml);
            XElement value = xdoc.Root.Element("toast");

尝试

 XElement value = xdoc.Element("toast");

无需访问 Root 即可获取 toast-节点。

我想通了

xdoc.Document.Element("toast");