コード例 #1
0
ファイル: RESTUtility.cs プロジェクト: bdunlay/geoscav
 /* parses the JSON response from the server */
 public void DownloadStringCompleted(object sender, DownloadStringCompletedEventArgs e)
 {
         isReady = true;
         deserializedJSON = JsonConvert.DeserializeObject<item>(e.Result);
         
 }
コード例 #2
0
ファイル: RESTUtility.cs プロジェクト: bdunlay/geoscav
 public RESTUtility()
 {
     isInitialized = true;
     deserializedJSON = null;
     isReady = false;
 }