나는 다음을 통해 파고 있습니다 : https://saxonica.plan.io/boards/3/topics/1468, http://saxon-xslt-and-xquery-processor.13853.n7.nabble.com/C-How-to-get-original-Node-from-XdmNode-td5511.html,하지만 내 머리를 감쌀 수는 없습니다.XmlNode로 XdmNode 변환
Saxon-HE 9.5.1.5 NuGet 패키지를 설치했으며 XmlDocument와 함께 XPath 2.0 기능을 연결하려고합니다.
이
은 내가 읽은 것에 나는 현재 기준으로 설정 한 코드입니다 :using Saxon.Api;
using System;
using System.Xml;
namespace MainTest
{
class Program
{
static void Main(string[] args)
{
SaxonFromXMLDoc();
}
private static void SaxonFromXMLDoc()
{
string path = System.IO.Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().Location);
path += System.IO.Path.DirectorySeparatorChar;
// Create an XML document.
XmlDocument xmldocument = new XmlDocument();
xmldocument.Load(path + "test.html");
// Create a Saxon processor.
Processor sxp = new Processor();
// Load the source document.
XdmNode document = sxp.NewDocumentBuilder().Wrap(xmldocument);
// XPath.
XPathCompiler xpath = sxp.NewXPathCompiler();
xpath.Caching = true;
// Query for items.
foreach (XdmNode item in xpath.Evaluate("descendant-or-self::*/attribute::*[matches(name(), \"^dx\")]", document))
{
// Get an XmlNode for manipulation.
XmlNode xmlnode = (XmlNode)((VirtualNode)item.Unwrap()).getUnderlyingNode();
Console.WriteLine(xmlnode.OuterXml);
}
Console.ReadKey();
}
}
}
음, 예상대로이이 오류가 발생합니다 (I 그 클래스에 대한 사용 지침이 없다) :
을#1: The type 'net.sf.saxon.om.Sequence' is defined in an assembly that is not referenced. You must add a reference to assembly 'saxon9he, Version=9.5.1.5, Culture=neutral, PublicKeyToken=e1fdd002d5083fe6'.
#2: The type or namespace name 'VirtualNode' could not be found (are you missing a using directive or an assembly reference?)
나는 using net.sf.saxon.om.Sequence
또는 그 밖의 것에 대해서는 언급 할 수없는 것 같습니다.
이 작업을하려면 어떻게해야합니까?