我有一个 Xml Stream,我想将它读入 XElement
。我见过使用 XmlTextReader
的示例,但我需要在 XElement
中使用它。
我到目前为止的代码:
string url =
String.Format( "http://dev.virtualearth.net/REST/v1/Locations/{0}?o=xml&key={1}", HttpUtility.UrlEncode( AddressQuery ), mapkey );
HttpWebRequest request = WebRequest.Create(url) as HttpWebRequest;
XmlTextReader reader = new XmlTextReader( url );
我只是不确定如何让读者进入 XElement。也许我的做法是错误的。
最佳答案
使用 linq to xml 你可以简单地做到这一点
var xml = XElement.Load(uri);
关于c# - 将 XML 提要读入 XElement,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6334836/