Exemplo n.º 1
0
 /// <remarks/>
 public void GetPlaceFactsAsync(Place place, object userState) {
     if ((this.GetPlaceFactsOperationCompleted == null)) {
         this.GetPlaceFactsOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetPlaceFactsOperationCompleted);
     }
     this.InvokeAsync("GetPlaceFacts", new object[] {
                 place}, this.GetPlaceFactsOperationCompleted, userState);
 }
Exemplo n.º 2
0
 /// <remarks/>
 public System.IAsyncResult BeginGetPlaceFacts(Place place, System.AsyncCallback callback, object asyncState) {
     return this.BeginInvoke("GetPlaceFacts", new object[] {
                 place}, callback, asyncState);
 }
Exemplo n.º 3
0
 /// <remarks/>
 public void GetPlaceFactsAsync(Place place) {
     this.GetPlaceFactsAsync(place, null);
 }
Exemplo n.º 4
0
 public PlaceFacts GetPlaceFacts(Place place) {
     object[] results = this.Invoke("GetPlaceFacts", new object[] {
                 place});
     return ((PlaceFacts)(results[0]));
 }
Exemplo n.º 5
0
 /// <remarks/>
 public void ConvertPlaceToLonLatPtAsync(Place place, object userState) {
     if ((this.ConvertPlaceToLonLatPtOperationCompleted == null)) {
         this.ConvertPlaceToLonLatPtOperationCompleted = new System.Threading.SendOrPostCallback(this.OnConvertPlaceToLonLatPtOperationCompleted);
     }
     this.InvokeAsync("ConvertPlaceToLonLatPt", new object[] {
                 place}, this.ConvertPlaceToLonLatPtOperationCompleted, userState);
 }
Exemplo n.º 6
0
 /// <remarks/>
 public void ConvertPlaceToLonLatPtAsync(Place place) {
     this.ConvertPlaceToLonLatPtAsync(place, null);
 }
Exemplo n.º 7
0
 /// <remarks/>
 public System.IAsyncResult BeginConvertPlaceToLonLatPt(Place place, System.AsyncCallback callback, object asyncState) {
     return this.BeginInvoke("ConvertPlaceToLonLatPt", new object[] {
                 place}, callback, asyncState);
 }
Exemplo n.º 8
0
 public LonLatPt ConvertPlaceToLonLatPt(Place place) {
     object[] results = this.Invoke("ConvertPlaceToLonLatPt", new object[] {
                 place});
     return ((LonLatPt)(results[0]));
 }