${IS6_OverlayAnalystEventArgs_Title}

${IS6_OverlayAnalystEventArgs_Description}

Inheritance: SuperMap.Web.Service.ServiceEventArgs
 private void request_Completed(object sender, RequestEventArgs e)
 {
     JsonObject jsonObject = (JsonObject)JsonObject.Parse(e.Result);
     OverlayAnalystResult result = OverlayAnalystResult.FromJson(jsonObject);
     LastResult = result;
     OverlayAnalystEventArgs args = new OverlayAnalystEventArgs(result, e.Result, e.UserState);
     OnProcessCompleted(args);
 }
 private void OnProcessCompleted(OverlayAnalystEventArgs args)
 {
     if (ProcessCompleted != null)
     {
         Application.Current.RootVisual.Dispatcher.BeginInvoke(ProcessCompleted, new object[] { this, args });
     }
 }