如何在.Net Core 1.0中使用XPathSelectElement?

时间:2016-12-16 03:18:08

标签: c# xpath asp.net-core nuget .net-core

.Net 4.X中,此扩展方法位于System.Xml.XPath

但是,我想知道如何在.Net Core中找到/使用它?我有一个班级图书馆。

移植工具无法显示有关XPathSelectElement的任何信息。

或者.Net核心中的任何替代品?

非常感谢!

2 个答案:

答案 0 :(得分:7)

您需要添加包System.Xml.XPath.XDocument 4.0.1。此程序包提供了向System.Xml.XPath程序包添加System.Xml.XDocument支持的扩展方法。

在程序包管理器控制台中运行以下命令。

PM> Install-Package System.Xml.XPath.XDocument -Version 4.0.1

您也可以从版本为NuGet 2.12或更高版本的NuGet包管理器安装它。

答案 1 :(得分:0)

根据Lex Li的建议,我们可以使用this website来搜索包名称。就我而言,它是:System.Xml.XPath.XDocument