Exemplo n.º 1
0
 /// <remarks/>
 public void findPOIAsync(string name, City city, ResultRange resultRange, string token) {
     this.findPOIAsync(name, city, resultRange, token, null);
 }
Exemplo n.º 2
0
 /// <remarks/>
 public void findPOIAsync(string name, City city, ResultRange resultRange, string token, object userState) {
     if ((this.findPOIOperationCompleted == null)) {
         this.findPOIOperationCompleted = new System.Threading.SendOrPostCallback(this.OnfindPOIOperationCompleted);
     }
     this.InvokeAsync("findPOI", new object[] {
                 name,
                 city,
                 resultRange,
                 token}, this.findPOIOperationCompleted, userState);
 }
Exemplo n.º 3
0
 public POIInfo findPOI(string name, City city, ResultRange resultRange, string token) {
     object[] results = this.Invoke("findPOI", new object[] {
                 name,
                 city,
                 resultRange,
                 token});
     return ((POIInfo)(results[0]));
 }