${iServerJava6R_FindLocationEventArgs_Title}

${iServerJava6R_FindLocationEventArgs_Description}

Inheritance: SuperMap.Web.Service.ServiceEventArgs
コード例 #1
0
 private void request_Completed(object sender, RequestEventArgs e)
 {
     JsonObject jsonObject = (JsonObject)JsonObject.Parse(e.Result);
     FindLocationAnalystResult result = FindLocationAnalystResult.FromJson(jsonObject);
     LastResult = result;
     FindLocationAnalystEventArgs args = new FindLocationAnalystEventArgs(result, e.Result, e.UserState);
     OnProcessCompleted(args);
 }
コード例 #2
0
 void locationAnalystService_ProcessCompleted(object sender, FindLocationAnalystEventArgs e)
 {
 }
コード例 #3
0
 private void OnProcessCompleted(FindLocationAnalystEventArgs args)
 {
     if (ProcessCompleted != null)
     {
         this.ProcessCompleted(this, args);
     }
 }