Esempio n. 1
0
 /// <remarks/>
 public void GetCustomersAsync(string search, rootCustomer customerPort) {
     this.GetCustomersAsync(search, customerPort, null);
 }
Esempio n. 2
0
 /// <remarks/>
 public void GetCustomersAsync(string search, rootCustomer customerPort, object userState) {
     if ((this.GetCustomersOperationCompleted == null)) {
         this.GetCustomersOperationCompleted = new System.Threading.SendOrPostCallback(this.OnGetCustomersOperationCompleted);
     }
     this.InvokeAsync("GetCustomers", new object[] {
                 search,
                 customerPort}, this.GetCustomersOperationCompleted, userState);
 }
Esempio n. 3
0
 public void GetCustomers(string search, ref rootCustomer customerPort) {
     object[] results = this.Invoke("GetCustomers", new object[] {
                 search,
                 customerPort});
     customerPort = ((rootCustomer)(results[0]));
 }