/// <remarks/>
 public void updateAsync(BaseObject[] update1, object userState)
 {
     if ((this.updateOperationCompleted == null))
     {
         this.updateOperationCompleted = new System.Threading.SendOrPostCallback(this.OnupdateOperationCompleted);
     }
     this.InvokeAsync("update", new object[] {
                 update1}, this.updateOperationCompleted, userState);
 }
 /// <remarks/>
 public void createAsync(BaseObject[] create1)
 {
     this.createAsync(create1, null);
 }
 /// <remarks/>
 public void updateAsync(BaseObject[] update1)
 {
     this.updateAsync(update1, null);
 }
 /// <remarks/>
 public System.IAsyncResult Beginupdate(BaseObject[] update1, System.AsyncCallback callback, object asyncState)
 {
     return this.BeginInvoke("update", new object[] {
                 update1}, callback, asyncState);
 }