對WP7

2011-11-09 65 views
0

讀取XML我想知道如何閱讀這個XML隨着Windows Phone(文檔樹如下圖所示):對WP7

<reponse>Please verify your email </reponse> 

我想顯示包含一個MessageBox:「請驗證您的電子郵件」。

回答

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; 
+0

感謝您的寶貴幫助;) – MarTech