/// <remarks/> public void GetLocationInfoAsync(LatLong location, string dataSourceName, GetInfoOptions options) { this.GetLocationInfoAsync(location, dataSourceName, options, null); }
/// <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); }
public Location[] GetLocationInfo(LatLong location, string dataSourceName, GetInfoOptions options) { object[] results = this.Invoke("GetLocationInfo", new object[] { location, dataSourceName, options}); return ((Location[])(results[0])); }