简体   繁体   中英

How to use XPathSelectElement in .Net Core 1.0?

In .Net 4.X , this extension method is under System.Xml.XPath .

However I'd like to know how could I find/use it in .Net Core? I have a class library.

The porting tool doesn't show anything about XPathSelectElement .

Or maybe any replacement in .Net core?

Thanks a lot!

You need to add package System.Xml.XPath.XDocument 4.0.1 . This package provides extension methods that add System.Xml.XPath support to the System.Xml.XDocument package.

Run below command in Package Manager Console.

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

You can also install it from NuGet package manager having version NuGet 2.12 or higher.

As suggested by Lex Li, we could use this website to search the package name. In my case it is: System.Xml.XPath.XDocument .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM