提取所有内容节点

本文关键字:节点 提取 | 更新日期: 2023-09-27 18:29:50

我从这个XML中提取了一个Content节点。

我使用此代码提取内容节点,但我需要提取所有内容节点。

我该怎么办?

    private void button1_Click(object sender, RoutedEventArgs e)
    {
        WebClient wc = new WebClient();
        wc.DownloadStringCompleted += HttpsCompleted;
        wc.DownloadStringAsync(new Uri("http://answers.yahooapis.com/AnswersService/V1/questionSearch?appid=dj0yJmk9TU1hbThtN0IwRjYzJmQ9WVdrOVMzWjVNR05GTXpBbWNHbzlNQS0tJnM9Y29uc3VtZXJzZWNyZXQmeD1kYg--YahooDemo&query=cars"), UriKind.RelativeOrAbsolute);            
    }
    private void HttpsCompleted(object sender, DownloadStringCompletedEventArgs e)
    {
        if (e.Error == null)
        {
            XDocument xdoc = XDocument.Parse(e.Result, LoadOptions.None);
            if (e.Error == null)
            {
                XNamespace ns = "urn:yahoo:answers";
                var Content = xdoc.Descendants(ns + "Content").FirstOrDefault();
                MessageBox.Show(Content.Value);
            }
        }
        else
        {
            MessageBox.Show(e.Error.Message);
        }                   
    }

提取所有内容节点

 var contents = xdoc.Descendants(ns + "Content");
 foreach(var content in contents){
    MessageBox.Show(content.Value);
  }