Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Xml;
- namespace Recetas.Ch06.R0605
- {
- public class BusquedaNodoNamespace
- {
- public static void Main()
- {
- // Carga del documento XML:
- XmlDocument docXml = new XmlDocument();
- docXml.Load("ClientePedido.xml");
- // Búsqueda de eitquetas para el namespace http://ortizol.com.co/recetas/ns/pedido:
- XmlNodeList resultado = docXml.GetElementsByTagName ("*",
- "http://ortizol.com.co/recetas/ns/pedido");
- // Muestra toda la información del pedido:
- Console.WriteLine ("Elemento \tAtributos");
- Console.WriteLine ("******* \t*******");
- // Itera la lista de resultados:
- foreach (XmlNode nodo in resultado)
- {
- Console.Write (nodo.Name + "\t");
- if (nodo.Name.Equals("ped:pedido"))
- {
- foreach( XmlAttribute atributo in nodo.Attributes)
- {
- Console.Write( atributo.Value + " ");
- }
- }
- else
- {
- Console.Write( nodo.InnerText + " ");
- }
- Console.WriteLine ();
- }
- Console.WriteLine ("******* \t*******");
- Console.WriteLine ();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement