XDocument Reading XML file with Root element having namespaces

后端 未结 4 1013
故里飘歌
故里飘歌 2021-01-07 06:13

I am having some trouble parsing an XML file with the root node having multiple namespaces. I want to get a list of nodes \'object\' with type string containing \'UserContro

4条回答
  •  臣服心动
    2021-01-07 06:31

    Try using the namespace:

    var ns = new XNamespace("http://www.springframework.net");
    IEnumerable values = webXMLResource.Descendants(ns + "object");
    

提交回复
热议问题