Example #1
0
 /// <remarks/>
 public void FindAddressAsync(FindAddressSpecification specification) {
     this.FindAddressAsync(specification, null);
 }
Example #2
0
 /// <remarks/>
 public void FindAddressAsync(FindAddressSpecification specification, object userState) {
     if ((this.FindAddressOperationCompleted == null)) {
         this.FindAddressOperationCompleted = new System.Threading.SendOrPostCallback(this.OnFindAddressOperationCompleted);
     }
     this.InvokeAsync("FindAddress", new object[] {
                 specification}, this.FindAddressOperationCompleted, userState);
 }
Example #3
0
 public FindResults FindAddress(FindAddressSpecification specification) {
     object[] results = this.Invoke("FindAddress", new object[] {
                 specification});
     return ((FindResults)(results[0]));
 }