SelectSingleNode is giving compilation error in dnx core 5.0

痴心易碎 提交于 2019-12-01 22:04:38

问题


I am getting this error with SelectSingleNode method: DNX Core 5.0 error CS1061: 'XmlDocument' does not contain a definition for 'SelectSingleNode' and no extension method 'SelectSingleNode' accepting a first argument of type 'XmlDocument' could be found (are you missing a using directive or an assembly reference?)

Is it not supported yet? What are my alternatives?


回答1:


In .Net Core 1.0 and .Net Standard 1.3 SelectSingleNode is an extenstion method

https://github.com/dotnet/corefx/issues/17349

Add a reference to make it available again:

 <PackageReference Include="System.Xml.XPath.XmlDocument" Version="4.3.0" />



回答2:


You need to use XDocument

const string xml = "<Misc><E_Mail>email@domain.xyz</E_Mail><Fax_Number>111-222-3333</Fax_Number></Misc>";
const string tagName = "E_Mail";
XDocument xDocument = XDocument.Parse(xml);
XElement xElement = xDocument.Descendants(tagName).FirstOrDefault();
if (xElement == null)
{
    Console.WriteLine($"There is no tag with the given name '{tagName}'.");
}
else
{
    Console.WriteLine(xElement.Value);  
}



回答3:


I have this problem too. To solve that, I'm using XDocument and so far so good.

Example:

XDocument xdoc = XDocument.Parse(xmlText);
var singleNode = xdoc.Element("someAttr");
var listOfNodes = singleNode.Elements("someAttrInnerText");

foreach (XElement e in listOfNodes)
{
     string someAttr = e.Attribute("code").Value;
     string someAttrInnerText = e.Value;
}

Don't forget to include "System.Xml.XDocument" inside your project.json.



来源:https://stackoverflow.com/questions/35089399/selectsinglenode-is-giving-compilation-error-in-dnx-core-5-0

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!