Пример #1
0
 /// <summary>
 /// Delete 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> DeleteIssueComment(Issue issue, Comment comment)
 {
     return(await _repositoriesEndPoint.DeleteIssueComment(issue, comment));
 }
Пример #2
0
 /// <summary>
 /// Delete a specific comment of the issue.
 /// </summary>
 /// <param name="commentId">The comment identifier.</param>
 /// <returns>Response from the BitBucket API.</returns>
 public async Task <Comment> DeleteIssueComment(int?commentId)
 {
     return(await _repositoriesEndPoint.DeleteIssueComment(_issueId, commentId));
 }