Example #1
0
 /// <remarks/>
 public void SetSoldAsync(SoldLite[] sold) {
     this.SetSoldAsync(sold, null);
 }
Example #2
0
 /// <remarks/>
 public void SetSoldAsync(SoldLite[] sold, object userState) {
     if ((this.SetSoldOperationCompleted == null)) {
         this.SetSoldOperationCompleted = new System.Threading.SendOrPostCallback(this.OnSetSoldOperationCompleted);
     }
     this.InvokeAsync("SetSold", new object[] {
                 sold}, this.SetSoldOperationCompleted, userState);
 }
Example #3
0
 public string[] SetSold(SoldLite[] sold) {
     object[] results = this.Invoke("SetSold", new object[] {
                 sold});
     return ((string[])(results[0]));
 }