Get XML Nodes in a Specific XML Namespace : Namespace : XML C# Source Code


Custom Search

C# Source Code » XML » Namespace »

 

Get XML Nodes in a Specific XML Namespace


  1.       
  2.    
  3.   
  4. using System;  
  5. using System.Xml;  
  6.   
  7. public class SelectNodesByNamespace {  
  8.   
  9.     private static void Main() {  
  10.   
  11.         XmlDocument doc = new XmlDocument();  
  12.         doc.Load("Order.xml");  
  13.   
  14.         XmlNodeList matches = doc.GetElementsByTagName("*","http://mycompany/OrderML");  
  15.   
  16.         foreach (XmlNode node in matches) {  
  17.   
  18.             Console.Write(node.Name + "\t");  
  19.             foreach (XmlAttribute attribute in node.Attributes) {  
  20.                 Console.Write(attribute.Value + "  ");  
  21.             }  
  22.         }  
  23.     }  
  24. }  
  25.   
  26.    
  27.       
  28.      
  29.     
  30.      


HTML code for linking to this page:

Follow Navioo On Twitter

C# Source Code

 Navioo XML
» Namespace