コード例 #1
0
 public void GetAllCommentsAsync(QAManagement.WorkingSite.CommentService.GetAllCommentsRequest request, object userState)
 {
     if ((this.onBeginGetAllCommentsDelegate == null))
     {
         this.onBeginGetAllCommentsDelegate = new BeginOperationDelegate(this.OnBeginGetAllComments);
     }
     if ((this.onEndGetAllCommentsDelegate == null))
     {
         this.onEndGetAllCommentsDelegate = new EndOperationDelegate(this.OnEndGetAllComments);
     }
     if ((this.onGetAllCommentsCompletedDelegate == null))
     {
         this.onGetAllCommentsCompletedDelegate = new System.Threading.SendOrPostCallback(this.OnGetAllCommentsCompleted);
     }
     base.InvokeAsync(this.onBeginGetAllCommentsDelegate, new object[] {
         request
     }, this.onEndGetAllCommentsDelegate, this.onGetAllCommentsCompletedDelegate, userState);
 }
コード例 #2
0
 public void GetAllCommentsAsync(QAManagement.WorkingSite.CommentService.GetAllCommentsRequest request)
 {
     this.GetAllCommentsAsync(request, null);
 }
コード例 #3
0
 public System.IAsyncResult BeginGetAllComments(QAManagement.WorkingSite.CommentService.GetAllCommentsRequest request, System.AsyncCallback callback, object asyncState)
 {
     return(base.Channel.BeginGetAllComments(request, callback, asyncState));
 }
コード例 #4
0
 private System.IAsyncResult OnBeginGetAllComments(object[] inValues, System.AsyncCallback callback, object asyncState)
 {
     QAManagement.WorkingSite.CommentService.GetAllCommentsRequest request = ((QAManagement.WorkingSite.CommentService.GetAllCommentsRequest)(inValues[0]));
     return(this.BeginGetAllComments(request, callback, asyncState));
 }
コード例 #5
0
 public QAManagement.WorkingSite.CommentService.GetAllCommentsResponse GetAllComments(QAManagement.WorkingSite.CommentService.GetAllCommentsRequest request)
 {
     return(base.Channel.GetAllComments(request));
 }