예제 #1
0
 /// <remarks/>
 public void updateAsync(TUpdate_Input[] Orders, object userState) {
     if ((this.updateOperationCompleted == null)) {
         this.updateOperationCompleted = new System.Threading.SendOrPostCallback(this.OnupdateOperationCompleted);
     }
     this.InvokeAsync("update", new object[] {
                 Orders}, this.updateOperationCompleted, userState);
 }
예제 #2
0
 /// <remarks/>
 public System.IAsyncResult Beginupdate(TUpdate_Input[] Orders, System.AsyncCallback callback, object asyncState) {
     return this.BeginInvoke("update", new object[] {
                 Orders}, callback, asyncState);
 }
예제 #3
0
 /// <remarks/>
 public void updateAsync(TUpdate_Input[] Orders) {
     this.updateAsync(Orders, null);
 }
예제 #4
0
 public TUpdate_Return[] update(TUpdate_Input[] Orders) {
     object[] results = this.Invoke("update", new object[] {
                 Orders});
     return ((TUpdate_Return[])(results[0]));
 }