Ejemplo n.º 1
0
 /// <summary>
 /// Gets an individual comment on an request. Private repositories require authorization with an account that has appropriate access.
 /// </summary>
 /// <param name="commentId">The comment identifier.</param>      /// <returns></returns>
 public async Task <Comment> GetPullRequestCommentAsync(int commentId)
 {
     return(await _repositoriesEndPoint.GetPullRequestCommentAsync(_accountName, _slug, _pullRequestId, commentId));
 }