/// <remarks/>
 public void copyAsync(CopyRequest copy1)
 {
     this.copyAsync(copy1, null);
 }
 /// <remarks/>
 public void copyAsync(CopyRequest copy1, object userState)
 {
     if ((this.copyOperationCompleted == null))
     {
         this.copyOperationCompleted = new System.Threading.SendOrPostCallback(this.OncopyOperationCompleted);
     }
     this.InvokeAsync("copy", new object[] {
                 copy1}, this.copyOperationCompleted, userState);
 }
 /// <remarks/>
 public System.IAsyncResult Begincopy(CopyRequest copy1, System.AsyncCallback callback, object asyncState)
 {
     return this.BeginInvoke("copy", new object[] {
                 copy1}, callback, asyncState);
 }