Advertisement
Fhernd

UsoXpath.cs

Sep 12th, 2014
3,024
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.74 KB | None | 0 0
  1. using System;
  2. using System.Text;
  3. using System.Xml;
  4.  
  5. namespace ParsingXml
  6. {
  7.     class Program
  8.     {
  9.         static void Main(string[] args)
  10.         {
  11.             // Creación de instancia de XmlDoc:
  12.             XmlDocument xmlDoc = new XmlDocument();
  13.            
  14.             // Carga de archivo XML:
  15.             xmlDoc.Load(@"A:\C#\XMLCSharp\Cap01\C01A06\config.xml");
  16.            
  17.             // Especificación de la expresión XPath:
  18.             XmlNode nodo = xmlDoc.SelectSingleNode("/config/databases/database[name='dev']/url");
  19.            
  20.             // Valida que se ha haya obtenido un valor:
  21.             if(nodo != null)
  22.             {
  23.                 Console.WriteLine(nodo.InnerText);
  24.             }
  25.         }
  26.     }
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement