Пример #1
0
 /// <summary>
 /// Update a specific comment of an issue.
 /// </summary>
 /// <param name="issue">The issue.</param>
 /// <param name="comment">The comment.</param>
 /// <returns>The response of BitBucket API.</returns>
 internal async Task <Comment> PutIssueComment(Issue issue, Comment comment)
 {
     return(await _repositoriesEndPoint.PutIssueComment(issue, comment));
 }
Пример #2
0
 /// <summary>
 /// Update a comment of the current issue.
 /// </summary>
 /// <param name="comment">The comment that you wish to update.</param>
 /// <returns>Response from the BitBucket API.</returns>
 public async Task <Comment> PutIssueComment(Comment comment)
 {
     return(await _repositoriesEndPoint.PutIssueComment(_issueId, comment));
 }