Json文字列をTextblockに表示したいと思います。
私のC#コードは次のとおりです。
namespace JsonDemo
{
public partial class MainPage : PhoneApplicationPage
{
// Constructor
public MainPage()
{
InitializeComponent();
WebClient wc = new WebClient();
wc.DownloadStringAsync(
new Uri("http://192.168.1.32/test/NadalApp.asmx/GetCityDetails"));
wc.DownloadStringCompleted +=
new DownloadStringCompletedEventHandler(
wc_DownloadStringCompleted);
}
void wc_DownloadStringCompleted(object sender,
DownloadStringCompletedEventArgs e)
{
string str = e.Result.Replace("</string>", "");
str = str.Replace("<?xml version=\"1.0\" encoding=\"utf-8\"?>", "");
str = str.Replace("<string xmlns=\"http://tempuri.org/\">", "");
Debug.WriteLine("Web service says: " + str);
}
Webサービスを介してe.Resultでjson文字列を取得しました。文字列を解析してテキストブロックを表示するにはどうすればよいですか?