Read XML from URL : Xml Read « XML « C# / CSharp Tutorial






using System;
using System.IO;
using System.Xml;

class MainClass
{    
  static void Main(string[] args)
  {
    string localURL = "http:\\www.yoursite.com\\Test.xml";
    XmlTextReader myXmlURLreader = null;
    myXmlURLreader = new XmlTextReader (localURL);

    while (myXmlURLreader.Read())
    {
      //TODO - 

    }
    if (myXmlURLreader != null)
      myXmlURLreader.Close();

  }
}








30.4.Xml Read
30.4.1.To read from an XML file
30.4.2.Read XML from URL
30.4.3.Read/Write Xml document with FileStream
30.4.4.Load xml from xml file directly
30.4.5.Read XML content as double
30.4.6.Set up XmlReaderSettings
30.4.7.Set Book As Current