Exemplo n.º 1
0
 /// <remarks/>
 public void SearchForAddressAsync(string DataKey, string Username, string SearchType, PL_SearchPrimaRecord SearchPrima, object userState)
 {
     if ((this.SearchForAddressOperationCompleted == null))
     {
         this.SearchForAddressOperationCompleted = new System.Threading.SendOrPostCallback(this.OnSearchForAddressOperationCompleted);
     }
     this.InvokeAsync("SearchForAddress", new object[] {
         DataKey,
         Username,
         SearchType,
         SearchPrima
     }, this.SearchForAddressOperationCompleted, userState);
 }
Exemplo n.º 2
0
 public PL_AddressesDataReturnedRecord SearchForAddress(string DataKey, string Username, string SearchType, PL_SearchPrimaRecord SearchPrima)
 {
     object[] results = this.Invoke("SearchForAddress", new object[] {
         DataKey,
         Username,
         SearchType,
         SearchPrima
     });
     return((PL_AddressesDataReturnedRecord)(results[0]));
 }
Exemplo n.º 3
0
 /// <remarks/>
 public void SearchForAddressAsync(string DataKey, string Username, string SearchType, PL_SearchPrimaRecord SearchPrima)
 {
     this.SearchForAddressAsync(DataKey, Username, SearchType, SearchPrima, null);
 }