在WP7上阅读XML

时间:2011-11-09 10:03:24

标签: windows-phone-7 xml-parsing

我想知道如何用Windows Phone读取这个xml(文档树如下所示):

<reponse>Please verify your email </reponse>

我想显示一个MessageBox,其中包含:“请验证您的电子邮件”。

1 个答案:

答案 0 :(得分:0)

我认为此链接将为您提供如何执行此操作的良好概述。 http://windowsphone.interoperabilitybridges.com/articles/android-to-wp7-chapter-7-xml-parsing-in-windows-phone-7-and-android(它描述了一些可能性)

我个人会将Linq用于XML。

关于使用Linq to XML http://www.windowsphonegeek.com/tips/wp7-working-with-xml-reading-filtering-and-databinding

的文章的另一个链接

此代码应该有效:

var xmlResult = XDocument.Parse("<reponse>Please verify your email </reponse>");
var responseValue = xmlResult.Element("response").Value;