我想根据网址“http://sporing.bring.no/sporing.xml?q=TESTPACKAGE-AT-PICKUPPOINT”在c#中的类中检索此数据。
不幸的是,你不能使用“XDocument xml = XDocument.Load(”“);”检索数据,因为url地址不是xml文件。
为了根据URL地址“http://sporing.bring.no/sporing.xml?q=TESTPACKAGE-AT-PICKUPPOINT”检索xml的数据,我需要使用C#中的哪些源代码?
谢谢!
答案 0 :(得分:0)
XDocument xml = XDocument.Parse(new WebClient().DownloadString("http://sporing.bring.no/sporing.xml?q=TESTPACKAGE-AT-PICKUPPOINT"));
这可能会解决您的问题。