/* parses the JSON response from the server */ public void DownloadStringCompleted(object sender, DownloadStringCompletedEventArgs e) { isReady = true; deserializedJSON = JsonConvert.DeserializeObject<item>(e.Result); }
public RESTUtility() { isInitialized = true; deserializedJSON = null; isReady = false; }