c#如何使用xelement读取xml属性

时间:2011-05-19 11:15:44

标签: c# xml windows-phone-7 xelement

我有一个带有此字符串的XML:

<media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/-tMQm4zsM-Yg/TdFEfG2y7GI/AAAAAAAAAT0/XGyQ8vFdVwY/s72-c/moorea-view.jpg" height="72" width="72" />

如何使用XElement读取属性“url”?

1 个答案:

答案 0 :(得分:18)

使用Attribute方法

yourxElement.Attribute("url").Value;