How do I get a NameTable from an XDocument?

前端 未结 4 1842
-上瘾入骨i
-上瘾入骨i 2021-01-01 08:58

How do I get a NameTable from an XDocument?

It doesn\'t seem to have the NameTable property that XmlDocument has.

EDIT: Judging by the lack of an answer I\'m

相关标签:
4条回答
  • 2021-01-01 09:02

    I have to manually add the namespaces I want to use to the XmlNamespaceManager rather than retrieving the existing nametable from the XDocument like you would with an XmlDocument.

    XDocument project = XDocument.Load(path);
    //Or: XDocument project = XDocument.Parse(xml);
    var nsMgr = new XmlNamespaceManager(new NameTable());
    //Or: var nsMgr = new XmlNamespaceManager(doc.CreateReader().NameTable);
    nsMgr.AddNamespace("msproj", "http://schemas.microsoft.com/developer/msbuild/2003");
    var itemGroups = project.XPathSelectElements(@"msproj:Project/msproj:ItemGroup", nsMgr).ToList();
    
    0 讨论(0)
  • 2021-01-01 09:04

    You need to shove the XML through an XmlReader and use the XmlReader's NameTable property.

    If you already have Xml you are loading into an XDocument then make sure you use an XmlReader to load the XDocument:-

    XmlReader reader = new XmlTextReader(someStream);
    XDocument doc = XDocument.Load(reader);
    XmlNameTable table = reader.NameTable;
    

    If you are building Xml from scratch with XDocument you will need to call XDocument's CreateReader method then have something consume the reader. Once the reader has be used (say loading another XDocument but better would be some do nothing sink which just causes the reader to run through the XDocument's contents) you can retrieve the NameTable.

    0 讨论(0)
  • 2021-01-01 09:04

    I did it like this:

    //Get the data into the XDoc
    XDocument doc = XDocument.Parse(data);
    //Grab the reader
    var reader = doc.CreateReader();
    //Set the root
    var root = doc.Root;
    //Use the reader NameTable
    var namespaceManager = new XmlNamespaceManager(reader.NameTable);
    //Add the GeoRSS NS
    namespaceManager.AddNamespace("georss", "http://www.georss.org/georss");  
    //Do something with it
    Debug.WriteLine(root.XPathSelectElement("//georss:point", namespaceManager).Value);  
    

    Matt

    0 讨论(0)
  • 2021-01-01 09:08

    It can also be done by XPathNavigator. Can be useful when you know neither Xml file Encoding nor namespace prefixes.

    XDocument xdoc = XDocument.Load(sourceFileName);
    XPathNavigator navi = xdoc.Root.CreateNavigator();
    XmlNamespaceManager xmlNSM = new XmlNamespaceManager(navi.NameTable);
    //Get all the namespaces from navigator
    IDictionary<string, string> dict = navi.GetNamespacesInScope(XmlNamespaceScope.All);
    //Copy them into Manager
    foreach (KeyValuePair<string, string> pair in dict)
    {
        xmlNSM.AddNamespace(pair.Key, pair.Value);
    }
    
    0 讨论(0)
提交回复
热议问题