${IS6_ShowRoutingEventArgs_Title}
${IS6_ShowRoutingEventArgs_Description}
private void request_Completed(object sender, RequestEventArgs e) { JsonObject json = (JsonObject)JsonObject.Parse(e.Result); ShowRoutingResult result = ShowRoutingResult.FromJson(json); LastResult = result; ShowRoutingEventArgs args = new ShowRoutingEventArgs(result, e.Result, e.UserState); OnProcessCompleted(args); }
private void OnProcessCompleted(ShowRoutingEventArgs args) { if (ProcessCompleted != null) { Application.Current.RootVisual.Dispatcher.BeginInvoke(ProcessCompleted, new object[] { this, args }); } }