/// <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); }
/// <remarks/> public System.IAsyncResult BeginFindPolygon(FindPolygonSpecification specification, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("FindPolygon", new object[] { specification}, callback, asyncState); }
/// <remarks/> public void FindPolygonAsync(FindPolygonSpecification specification) { this.FindPolygonAsync(specification, null); }
public FindResults FindPolygon(FindPolygonSpecification specification) { object[] results = this.Invoke("FindPolygon", new object[] { specification}); return ((FindResults)(results[0])); }