Exemplo 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 Comment GetPullRequestComment(int commentId)
 {
     return(_repositoriesEndPoint.GetPullRequestComment(_accountName, _slug, _pullRequestId, commentId));
 }
Exemplo n.º 2
0
 internal object GetPullRequestComment(int pullRequestId, int commentId)
 {
     return(_repositoriesEndPoint.GetPullRequestComment(_accountName, _repository, pullRequestId, commentId));
 }