/// <remarks/> public System.IAsyncResult BeginfindPlace1(string placeName, PlaceFinderOptions placeFinderOptions, System.AsyncCallback callback, object asyncState) { return(this.BeginInvoke("findPlace1", new object[] { placeName, placeFinderOptions }, callback, asyncState)); }
public LocationInfo findPlace(string placeName, PlaceFinderOptions placeFinderOptions) { object[] results = this.Invoke("findPlace1", new object[] { placeName, placeFinderOptions }); return((LocationInfo)(results[0])); }