Ejemplo n.º 1
0
 /// <summary>
 /// To get an individual commit comment, just follow the object's self link.
 /// </summary>
 /// <param name="revision">The commit's SHA1.</param>
 /// <param name="commentId">The comment identifier.</param>
 /// <returns></returns>
 public async Task <object> GetCommitComment(string revision, int commentId)
 {
     return(await _repositoriesEndPoint.GetCommitComment(_accountName, _repository, revision, commentId));
 }