XMLDocument 对象可以与 XPathDocument 对象一起使用吗?

发布于 2024-09-27 03:27:10 字数 426 浏览 1 评论 0原文

我有一个静态方法,可以转换 html 文件并返回 XMLDocument 对象。

经过广泛的研究后,出现了以下问题:

可以将 XMLDocument 对象传递给 XPathDocument 对象,以便在仅从文档中读取数据而不是对其进行编辑时变得容易。

Research01

MSDN

请回复并告诉我这是否可能?如果是这样,怎么办?

干杯。

I have a static method that converts a html file and returns an XMLDocument object.

After doing extensive research, the following question has arised:

Can pass an XMLDocument object to a XPathDocument object, to make it easy when simply reading data from the document and not editing it.

Research01

MSDN

Please reply and let me know if this is possible? If so, how?

Cheers.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

江湖正好 2024-10-04 03:27:10

您如何从文档中读取数据? XmlDocumentXPathDocument 都有一个 CreateNavigator 方法,该方法返回用于读取文档的 XPathNavigator。否则,只需将 XmlDocument 流式传输到 MemoryStream 中,并从中创建 XPathDocument

How are you reading data from the document? Both XmlDocument and XPathDocument have a CreateNavigator method that returns an XPathNavigator for reading the document. Otherwise, just stream the XmlDocument into a MemoryStream and create the XPathDocument from that.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文