public void GetCommentByIdAsync(QAManagement.WorkingSite.CommentService.GetCommentByIdRequest request, object userState)
 {
     if ((this.onBeginGetCommentByIdDelegate == null))
     {
         this.onBeginGetCommentByIdDelegate = new BeginOperationDelegate(this.OnBeginGetCommentById);
     }
     if ((this.onEndGetCommentByIdDelegate == null))
     {
         this.onEndGetCommentByIdDelegate = new EndOperationDelegate(this.OnEndGetCommentById);
     }
     if ((this.onGetCommentByIdCompletedDelegate == null))
     {
         this.onGetCommentByIdCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetCommentByIdCompleted);
     }
     base.InvokeAsync(this.onBeginGetCommentByIdDelegate, new object[] {
         request
     }, this.onEndGetCommentByIdDelegate, this.onGetCommentByIdCompletedDelegate, userState);
 }
 public void GetCommentByIdAsync(QAManagement.WorkingSite.CommentService.GetCommentByIdRequest request)
 {
     this.GetCommentByIdAsync(request, null);
 }
 public System.IAsyncResult BeginGetCommentById(QAManagement.WorkingSite.CommentService.GetCommentByIdRequest request, System.AsyncCallback callback, object asyncState)
 {
     return(base.Channel.BeginGetCommentById(request, callback, asyncState));
 }
 private System.IAsyncResult OnBeginGetCommentById(object[] inValues, System.AsyncCallback callback, object asyncState)
 {
     QAManagement.WorkingSite.CommentService.GetCommentByIdRequest request = ((QAManagement.WorkingSite.CommentService.GetCommentByIdRequest)(inValues[0]));
     return(this.BeginGetCommentById(request, callback, asyncState));
 }
 public QAManagement.WorkingSite.CommentService.GetCommentByIdResponse GetCommentById(QAManagement.WorkingSite.CommentService.GetCommentByIdRequest request)
 {
     return(base.Channel.GetCommentById(request));
 }