Ejemplo n.º 1
0
 public void UpdateCommentAsync(QAManagement.WorkingSite.CommentService.UpdateCommentRequest request, object userState)
 {
     if ((this.onBeginUpdateCommentDelegate == null))
     {
         this.onBeginUpdateCommentDelegate = new BeginOperationDelegate(this.OnBeginUpdateComment);
     }
     if ((this.onEndUpdateCommentDelegate == null))
     {
         this.onEndUpdateCommentDelegate = new EndOperationDelegate(this.OnEndUpdateComment);
     }
     if ((this.onUpdateCommentCompletedDelegate == null))
     {
         this.onUpdateCommentCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnUpdateCommentCompleted);
     }
     base.InvokeAsync(this.onBeginUpdateCommentDelegate, new object[] {
         request
     }, this.onEndUpdateCommentDelegate, this.onUpdateCommentCompletedDelegate, userState);
 }
Ejemplo n.º 2
0
 public void UpdateCommentAsync(QAManagement.WorkingSite.CommentService.UpdateCommentRequest request)
 {
     this.UpdateCommentAsync(request, null);
 }
Ejemplo n.º 3
0
 public System.IAsyncResult BeginUpdateComment(QAManagement.WorkingSite.CommentService.UpdateCommentRequest request, System.AsyncCallback callback, object asyncState)
 {
     return(base.Channel.BeginUpdateComment(request, callback, asyncState));
 }
Ejemplo n.º 4
0
 private System.IAsyncResult OnBeginUpdateComment(object[] inValues, System.AsyncCallback callback, object asyncState)
 {
     QAManagement.WorkingSite.CommentService.UpdateCommentRequest request = ((QAManagement.WorkingSite.CommentService.UpdateCommentRequest)(inValues[0]));
     return(this.BeginUpdateComment(request, callback, asyncState));
 }
Ejemplo n.º 5
0
 public QAManagement.WorkingSite.CommentService.UpdateCommentResponse UpdateComment(QAManagement.WorkingSite.CommentService.UpdateCommentRequest request)
 {
     return(base.Channel.UpdateComment(request));
 }