コード例 #1
0
 /// <remarks/>
 public void getNearestAddressAsync(PointVO point, int maxAddresses, string login, string password, object userState) {
     if ((this.getNearestAddressOperationCompleted == null)) {
         this.getNearestAddressOperationCompleted = new System.Threading.SendOrPostCallback(this.OngetNearestAddressOperationCompleted);
     }
     this.InvokeAsync("getNearestAddress", new object[] {
                 point,
                 maxAddresses,
                 login,
                 password}, this.getNearestAddressOperationCompleted, userState);
 }
コード例 #2
0
 public NearestAddressVO[] getNearestAddress(PointVO point, int maxAddresses, string login, string password) {
     object[] results = this.Invoke("getNearestAddress", new object[] {
                 point,
                 maxAddresses,
                 login,
                 password});
     return ((NearestAddressVO[])(results[0]));
 }
コード例 #3
0
 /// <remarks/>
 public void getNearestAddressAsync(PointVO point, int maxAddresses, string login, string password) {
     this.getNearestAddressAsync(point, maxAddresses, login, password, null);
 }
コード例 #4
0
 /// <remarks/>
 public void getLandParcelIdentificationWithinPolygonAsync(PointVO[] points, string login, string password, object userState) {
     if ((this.getLandParcelIdentificationWithinPolygonOperationCompleted == null)) {
         this.getLandParcelIdentificationWithinPolygonOperationCompleted = new System.Threading.SendOrPostCallback(this.OngetLandParcelIdentificationWithinPolygonOperationCompleted);
     }
     this.InvokeAsync("getLandParcelIdentificationWithinPolygon", new object[] {
                 points,
                 login,
                 password}, this.getLandParcelIdentificationWithinPolygonOperationCompleted, userState);
 }
コード例 #5
0
 /// <remarks/>
 public void getLandParcelIdentificationWithinPolygonAsync(PointVO[] points, string login, string password) {
     this.getLandParcelIdentificationWithinPolygonAsync(points, login, password, null);
 }
コード例 #6
0
 public MATRLandParcelIdentificationStructure[] getLandParcelIdentificationWithinPolygon(PointVO[] points, string login, string password) {
     object[] results = this.Invoke("getLandParcelIdentificationWithinPolygon", new object[] {
                 points,
                 login,
                 password});
     return ((MATRLandParcelIdentificationStructure[])(results[0]));
 }
コード例 #7
0
 /// <remarks/>
 public void getLandParcelIdentificationAtPositionAsync(PointVO point, string login, string password) {
     this.getLandParcelIdentificationAtPositionAsync(point, login, password, null);
 }
コード例 #8
0
 public MATRLandParcelIdentificationStructure getLandParcelIdentificationAtPosition(PointVO point, string login, string password) {
     object[] results = this.Invoke("getLandParcelIdentificationAtPosition", new object[] {
                 point,
                 login,
                 password});
     return ((MATRLandParcelIdentificationStructure)(results[0]));
 }