${IS6_GetEntityEventArgs_Title}
${IS6_GetEntityEventArgs_Description}
private void request_Completed(object sender, RequestEventArgs e) { JsonObject jsonObject = (JsonObject)JsonObject.Parse(e.Result); Entity result = Entity.FromJson(jsonObject); LastResult = result; GetEntityEventArgs args = new GetEntityEventArgs(result, e.Result, e.UserState); OnProcessCompleted(args); }
private void OnProcessCompleted(GetEntityEventArgs args) { if (ProcessCompleted != null) { Application.Current.RootVisual.Dispatcher.BeginInvoke(ProcessCompleted, new object[] { this, args }); } }