コード例 #1
0
 /// <summary>
 /// Post a comment to the selected issue.
 /// </summary>
 /// <param name="issue">The issue.</param>
 /// <param name="comment">The comment.</param>
 /// <returns>Response from the BitBucket API.</returns>
 internal Comment PostIssueComment(Issue issue, Comment comment)
 {
     return(_repositoriesEndPoint.PostIssueComment(issue, comment));
 }
コード例 #2
0
 /// <summary>
 /// Post a comment to the issue.
 /// </summary>
 /// <param name="comment">The comment you wish to post.</param>
 /// <returns>Response from the BitBucket API.</returns>
 public Comment PostComment(Comment comment)
 {
     return(_repositoriesEndPoint.PostIssueComment(_issueId, comment));
 }