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

            return((LocationInfo)(results[0]));
        }