mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-19 05:35:11 +00:00
added new overloads
This commit is contained in:
@@ -15,6 +15,17 @@ namespace Octokit.Reactive
|
||||
/// <returns>The list of <see cref="PullRequestReviewComment"/>s for the specified pull request</returns>
|
||||
IObservable<PullRequestReviewComment> GetAll(string owner, string name, int number);
|
||||
|
||||
/// <summary>
|
||||
/// Gets review comments for a specified pull request.
|
||||
/// </summary>
|
||||
/// <remarks>http://developer.github.com/v3/pulls/comments/#list-comments-on-a-pull-request</remarks>
|
||||
/// <param name="owner">The owner of the repository</param>
|
||||
/// <param name="name">The name of the repository</param>
|
||||
/// <param name="number">The pull request number</param>
|
||||
/// <param name="options">Options for changing the API response</param>
|
||||
/// <returns>The list of <see cref="PullRequestReviewComment"/>s for the specified pull request</returns>
|
||||
IObservable<PullRequestReviewComment> GetAll(string owner, string name, int number, ApiOptions options);
|
||||
|
||||
/// <summary>
|
||||
/// Gets a list of the pull request review comments in a specified repository.
|
||||
/// </summary>
|
||||
@@ -24,6 +35,16 @@ namespace Octokit.Reactive
|
||||
/// <returns>The list of <see cref="PullRequestReviewComment"/>s for the specified repository</returns>
|
||||
IObservable<PullRequestReviewComment> GetAllForRepository(string owner, string name);
|
||||
|
||||
/// <summary>
|
||||
/// Gets a list of the pull request review comments in a specified repository.
|
||||
/// </summary>
|
||||
/// <remarks>http://developer.github.com/v3/pulls/comments/#list-comments-in-a-repository</remarks>
|
||||
/// <param name="owner">The owner of the repository</param>
|
||||
/// <param name="name">The name of the repository</param>
|
||||
/// <param name="options">Options for changing the API response</param>
|
||||
/// <returns>The list of <see cref="PullRequestReviewComment"/>s for the specified repository</returns>
|
||||
IObservable<PullRequestReviewComment> GetAllForRepository(string owner, string name, ApiOptions options);
|
||||
|
||||
/// <summary>
|
||||
/// Gets a list of the pull request review comments in a specified repository.
|
||||
/// </summary>
|
||||
@@ -34,6 +55,17 @@ namespace Octokit.Reactive
|
||||
/// <returns>The list of <see cref="PullRequestReviewComment"/>s for the specified repository</returns>
|
||||
IObservable<PullRequestReviewComment> GetAllForRepository(string owner, string name, PullRequestReviewCommentRequest request);
|
||||
|
||||
/// <summary>
|
||||
/// Gets a list of the pull request review comments in a specified repository.
|
||||
/// </summary>
|
||||
/// <remarks>http://developer.github.com/v3/pulls/comments/#list-comments-in-a-repository</remarks>
|
||||
/// <param name="owner">The owner of the repository</param>
|
||||
/// <param name="name">The name of the repository</param>
|
||||
/// <param name="request">The sorting <see cref="PullRequestReviewCommentRequest">parameters</see></param>
|
||||
/// <param name="options">Options for changing the API response</param>
|
||||
/// <returns>The list of <see cref="PullRequestReviewComment"/>s for the specified repository</returns>
|
||||
IObservable<PullRequestReviewComment> GetAllForRepository(string owner, string name, PullRequestReviewCommentRequest request, ApiOptions options);
|
||||
|
||||
/// <summary>
|
||||
/// Gets a single pull request review comment by number.
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user