Exemple #1
0
 /// <remarks/>
 public void GetLocationInfoAsync(LatLong location, string dataSourceName, GetInfoOptions options) {
     this.GetLocationInfoAsync(location, dataSourceName, options, null);
 }
Exemple #2
0
 /// <remarks/>
 public void GetLocationInfoAsync(LatLong location, string dataSourceName, GetInfoOptions options, object userState) {
     if ((this.GetLocationInfoOperationCompleted == null)) {
         this.GetLocationInfoOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetLocationInfoOperationCompleted);
     }
     this.InvokeAsync("GetLocationInfo", new object[] {
                 location,
                 dataSourceName,
                 options}, this.GetLocationInfoOperationCompleted, userState);
 }
Exemple #3
0
 public Location[] GetLocationInfo(LatLong location, string dataSourceName, GetInfoOptions options) {
     object[] results = this.Invoke("GetLocationInfo", new object[] {
                 location,
                 dataSourceName,
                 options});
     return ((Location[])(results[0]));
 }