Пример #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 Comment PutIssueComment(Issue issue, Comment comment)
 {
     return(_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 Comment PutIssueComment(Comment comment)
 {
     return(_repositoriesEndPoint.PutIssueComment(_issueId, comment));
 }