${iServerJava6R_ChartFeatureInfoSpecsEventArgs_Title}
Inheritance: SuperMap.Web.Service.ServiceEventArgs
 private void OnProcessCompleted(ChartFeatureInfoSpecsEventArgs e)
 {
     if (ProcessCompleted != null)
     {
         ProcessCompleted(this, e);
     }
 }
 private void Request_Completed(object sender, RequestEventArgs e)
 {
     //不做e.Error的判断
     if (e.Result != null && !string.IsNullOrEmpty(e.Result))
     {
         JsonArray array = (JsonArray)JsonArray.Parse(e.Result);
         ChartFeatureInfoSpecsResult result = ChartFeatureInfoSpecsResult.FromJson(array);
         lastResult = result;
         ChartFeatureInfoSpecsEventArgs args = new ChartFeatureInfoSpecsEventArgs(result, e.Result, e.UserState);
         OnProcessCompleted(args);
     }
 }