/// <remarks/>
 public void closeAsync(CloseRequest close1)
 {
     this.closeAsync(close1, null);
 }
 /// <remarks/>
 public void closeAsync(CloseRequest close1, object userState)
 {
     if ((this.closeOperationCompleted == null))
     {
         this.closeOperationCompleted = new System.Threading.SendOrPostCallback(this.OncloseOperationCompleted);
     }
     this.InvokeAsync("close", new object[] {
                 close1}, this.closeOperationCompleted, userState);
 }
 /// <remarks/>
 public System.IAsyncResult Beginclose(CloseRequest close1, System.AsyncCallback callback, object asyncState)
 {
     return this.BeginInvoke("close", new object[] {
                 close1}, callback, asyncState);
 }