Beispiel #1
0
 /// <remarks/>
 public void FindPolygonAsync(FindPolygonSpecification specification) {
     this.FindPolygonAsync(specification, null);
 }
Beispiel #2
0
 /// <remarks/>
 public void FindPolygonAsync(FindPolygonSpecification specification, object userState) {
     if ((this.FindPolygonOperationCompleted == null)) {
         this.FindPolygonOperationCompleted = new System.Threading.SendOrPostCallback(this.OnFindPolygonOperationCompleted);
     }
     this.InvokeAsync("FindPolygon", new object[] {
                 specification}, this.FindPolygonOperationCompleted, userState);
 }
Beispiel #3
0
 public FindResults FindPolygon(FindPolygonSpecification specification) {
     object[] results = this.Invoke("FindPolygon", new object[] {
                 specification});
     return ((FindResults)(results[0]));
 }