XML, valori che ritornano

se vi occorre recuperare un valore da un file xml ecco una routine c#

public string GetDecodifica(string Value, string XMLFilePathName, string XMLFileName, string Nodo )

{

   // istanzia XPath per navigare nei nodi del file xml

   XPathDocument xdoc = new XPathDocument(XMLFilePathName + XMLFileName);

   XPathNavigator xnav = ((IXPathNavigable)xdoc).CreateNavigator();

   XPathNodeIterator xiter = xnav.Select(Nodo);

   // Recupera da file xml il valore cercato

   while(xiter.MoveNext())

   {

      XPathNodeIterator xiterFields = xiter.Current.SelectDescendants(XPathNodeType.Element,false);

      while(xiterFields.MoveNext())

      {

         string cValue = Value;

         if(xiterFields.Current.Name==cValue) return xiterFields.Current.Value;

      }

   }

   return null;

}

posted @ giovedì 10 marzo 2005 03:16

Print
Comments have been closed on this topic.
«aprile»
domlunmarmergiovensab
31123456
78910111213
14151617181920
21222324252627
2829301234
567891011