下面是一个示例 xml 文件,其中包含我所追求的数据
<ns2:Response/">
<cacheKey>-7ca7484a:13e22cb1399:-47c0</cacheKey>
<cacheLocation>10.186.168.39:7302</cacheLocation>
</ns2:Response>
我有 2 个类,1 个用于获取 xml 数据的类,然后这个类将数据传递给另一个类,该类将有许多其他类来提取数据。
public static string GetXmlData()
{
string xmlPath = "url";
var wc = new WebClient();
wc.Headers.Add(HttpRequestHeader.ContentType, "application/xml");
wc.Headers.Add(HttpRequestHeader.Accept, "application/xml");
var xmlData = wc.DownloadString(new Uri(xmlPath));
var xmlDoc = XDocument.Parse(xmlData);
return xmlDoc.ToString();
}
第二类有以下
public class GetCacheKey
{
public string cacheKey { get; set; }
}
以下是我遇到问题的地方:
public IEnumerable<GetCacheKey> CacheKey()
{
var doc = XDocument.Parse(GetXMLData());
var xkey = from c in doc.Descendants("Response")
select new GetCacheKey()
{
cacheKey = (string)doc.Element("cacheKey").Value
};
return xkey;
}
在调试器中,它返回 Empty = "Enumeration yielded no results"
那么如何获取cacheKey的值呢?