This article describes the method of obtaining remote XML documents in C#. Share it for your reference, as follows:
private XDocument GetXDocument(string url) { Uri uri = new Uri(url); wb = new (); = ; MemoryStream ms = new MemoryStream((uri)); rdr = new (ms); XDocument doc = (rdr); return doc; }
I hope this article will be helpful to everyone's C# programming.