/// <remarks/> public void GetCrossStreetXYAsync(City cidade, string firstStreet, string secondStreet, string token) { this.GetCrossStreetXYAsync(cidade, firstStreet, secondStreet, token, null); }
/// <remarks/> public void GetCrossStreetXYAsync(City cidade, string firstStreet, string secondStreet, string token, object userState) { if ((this.GetCrossStreetXYOperationCompleted == null)) { this.GetCrossStreetXYOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetCrossStreetXYOperationCompleted); } this.InvokeAsync("GetCrossStreetXY", new object[] { cidade, firstStreet, secondStreet, token}, this.GetCrossStreetXYOperationCompleted, userState); }
/// <remarks/> public void findCityAsync(City cidade, AddressOptions ao, string token, object userState) { if ((this.findCityOperationCompleted == null)) { this.findCityOperationCompleted = new System.Threading.SendOrPostCallback(this.OnfindCityOperationCompleted); } this.InvokeAsync("findCity", new object[] { cidade, ao, token}, this.findCityOperationCompleted, userState); }
public CrossStreetLocation[] GetCrossStreetXY(City cidade, string firstStreet, string secondStreet, string token) { object[] results = this.Invoke("GetCrossStreetXY", new object[] { cidade, firstStreet, secondStreet, token}); return ((CrossStreetLocation[])(results[0])); }
/// <remarks/> public void findCityAsync(City cidade, AddressOptions ao, string token) { this.findCityAsync(cidade, ao, token, null); }
public CityLocationInfo findCity(City cidade, AddressOptions ao, string token) { object[] results = this.Invoke("findCity", new object[] { cidade, ao, token}); return ((CityLocationInfo)(results[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); }
/// <remarks/> public void findPOIAsync(string name, City city, ResultRange resultRange, string token) { this.findPOIAsync(name, city, resultRange, token, null); }
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])); }