2011年7月25日月曜日

SilverlightでのXMLファイルの読み込み

ブラウザでのXMLファイルの読み込み
   //設定ファイルを読み込み
   WebClient client = new WebClient();
   client.DownloadStringCompleted += new DownloadStringCompletedEventHandler(client_DownloadStringCompleted);
   Uri xmlUri = new Uri(Application.Current.Host.Source, "../Props/aFrameworkSettings.xml");
   client.DownloadStringAsync(xmlUri);
  string xml;
  void  client_DownloadStringCompleted(object sender, DownloadStringCompletedEventArgs e)
  {
   //処理終了
   if (e.Error == null)
   {
    xml = e.Result;
    //このあとxmlを解析する
   }
  }

0 件のコメント:

コメントを投稿