本文介绍了我如何获得一个IXmlNamespaceResolver的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我试图调用XElement.XPathSelectElements()重载需要IXmlNamespaceResolver对象。谁能告诉我怎么走(或做)的IXmlNamespaceResolver?我有我想在我的查询中使用的命名空间的列表
解决方案
您可以使用的 p>使用的无参数的构造函数,然后在 AddNamespace
函数添加的命名空间。
I'm trying to call the XElement.XPathSelectElements() overload that requires an IXmlNamespaceResolver object. Can anyone show me how to get (or make) an IXmlNamespaceResolver? I have a list of the namespaces I want to use in my query
解决方案
You can use an XmlNamespaceManager that implements that interface
Use the no args constructor and then the AddNamespace
function to add namespaces.
这篇关于我如何获得一个IXmlNamespaceResolver的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!