mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-20 06:05:12 +00:00
cleared <returns> tags
This commit is contained in:
@@ -18,7 +18,7 @@ namespace Octokit.Reactive
|
|||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="number">The pull request number</param>
|
/// <param name="number">The pull request number</param>
|
||||||
/// <returns>The list of <see cref="PullRequestReviewComment"/>s for the specified pull request</returns>
|
/// <returns></returns>
|
||||||
IObservable<PullRequestReviewComment> GetAll(string owner, string name, int number);
|
IObservable<PullRequestReviewComment> GetAll(string owner, string name, int number);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -27,7 +27,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>http://developer.github.com/v3/pulls/comments/#list-comments-on-a-pull-request</remarks>
|
/// <remarks>http://developer.github.com/v3/pulls/comments/#list-comments-on-a-pull-request</remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The ID of the repository</param>
|
||||||
/// <param name="number">The pull request number</param>
|
/// <param name="number">The pull request number</param>
|
||||||
/// <returns>The list of <see cref="PullRequestReviewComment"/>s for the specified pull request</returns>
|
/// <returns></returns>
|
||||||
IObservable<PullRequestReviewComment> GetAll(int repositoryId, int number);
|
IObservable<PullRequestReviewComment> GetAll(int repositoryId, int number);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -38,7 +38,7 @@ namespace Octokit.Reactive
|
|||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="number">The pull request number</param>
|
/// <param name="number">The pull request number</param>
|
||||||
/// <param name="options">Options for changing the API response</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>
|
/// <returns></returns>
|
||||||
IObservable<PullRequestReviewComment> GetAll(string owner, string name, int number, ApiOptions options);
|
IObservable<PullRequestReviewComment> GetAll(string owner, string name, int number, ApiOptions options);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -48,7 +48,7 @@ namespace Octokit.Reactive
|
|||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The ID of the repository</param>
|
||||||
/// <param name="number">The pull request number</param>
|
/// <param name="number">The pull request number</param>
|
||||||
/// <param name="options">Options for changing the API response</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>
|
/// <returns></returns>
|
||||||
IObservable<PullRequestReviewComment> GetAll(int repositoryId, int number, ApiOptions options);
|
IObservable<PullRequestReviewComment> GetAll(int repositoryId, int number, ApiOptions options);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -57,7 +57,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>http://developer.github.com/v3/pulls/comments/#list-comments-in-a-repository</remarks>
|
/// <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="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <returns>The list of <see cref="PullRequestReviewComment"/>s for the specified repository</returns>
|
/// <returns></returns>
|
||||||
IObservable<PullRequestReviewComment> GetAllForRepository(string owner, string name);
|
IObservable<PullRequestReviewComment> GetAllForRepository(string owner, string name);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -65,7 +65,7 @@ namespace Octokit.Reactive
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>http://developer.github.com/v3/pulls/comments/#list-comments-in-a-repository</remarks>
|
/// <remarks>http://developer.github.com/v3/pulls/comments/#list-comments-in-a-repository</remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The ID of the repository</param>
|
||||||
/// <returns>The list of <see cref="PullRequestReviewComment"/>s for the specified repository</returns>
|
/// <returns></returns>
|
||||||
IObservable<PullRequestReviewComment> GetAllForRepository(int repositoryId);
|
IObservable<PullRequestReviewComment> GetAllForRepository(int repositoryId);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -75,7 +75,7 @@ namespace Octokit.Reactive
|
|||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
/// <returns>The list of <see cref="PullRequestReviewComment"/>s for the specified repository</returns>
|
/// <returns></returns>
|
||||||
IObservable<PullRequestReviewComment> GetAllForRepository(string owner, string name, ApiOptions options);
|
IObservable<PullRequestReviewComment> GetAllForRepository(string owner, string name, ApiOptions options);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -84,7 +84,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>http://developer.github.com/v3/pulls/comments/#list-comments-in-a-repository</remarks>
|
/// <remarks>http://developer.github.com/v3/pulls/comments/#list-comments-in-a-repository</remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The ID of the repository</param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
/// <returns>The list of <see cref="PullRequestReviewComment"/>s for the specified repository</returns>
|
/// <returns></returns>
|
||||||
IObservable<PullRequestReviewComment> GetAllForRepository(int repositoryId, ApiOptions options);
|
IObservable<PullRequestReviewComment> GetAllForRepository(int repositoryId, ApiOptions options);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -94,7 +94,7 @@ namespace Octokit.Reactive
|
|||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name 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="request">The sorting <see cref="PullRequestReviewCommentRequest">parameters</see></param>
|
||||||
/// <returns>The list of <see cref="PullRequestReviewComment"/>s for the specified repository</returns>
|
/// <returns></returns>
|
||||||
IObservable<PullRequestReviewComment> GetAllForRepository(string owner, string name, PullRequestReviewCommentRequest request);
|
IObservable<PullRequestReviewComment> GetAllForRepository(string owner, string name, PullRequestReviewCommentRequest request);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -103,7 +103,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>http://developer.github.com/v3/pulls/comments/#list-comments-in-a-repository</remarks>
|
/// <remarks>http://developer.github.com/v3/pulls/comments/#list-comments-in-a-repository</remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The ID of the repository</param>
|
||||||
/// <param name="request">The sorting <see cref="PullRequestReviewCommentRequest">parameters</see></param>
|
/// <param name="request">The sorting <see cref="PullRequestReviewCommentRequest">parameters</see></param>
|
||||||
/// <returns>The list of <see cref="PullRequestReviewComment"/>s for the specified repository</returns>
|
/// <returns></returns>
|
||||||
IObservable<PullRequestReviewComment> GetAllForRepository(int repositoryId, PullRequestReviewCommentRequest request);
|
IObservable<PullRequestReviewComment> GetAllForRepository(int repositoryId, PullRequestReviewCommentRequest request);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -114,7 +114,7 @@ namespace Octokit.Reactive
|
|||||||
/// <param name="name">The name 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="request">The sorting <see cref="PullRequestReviewCommentRequest">parameters</see></param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
/// <returns>The list of <see cref="PullRequestReviewComment"/>s for the specified repository</returns>
|
/// <returns></returns>
|
||||||
IObservable<PullRequestReviewComment> GetAllForRepository(string owner, string name, PullRequestReviewCommentRequest request, ApiOptions options);
|
IObservable<PullRequestReviewComment> GetAllForRepository(string owner, string name, PullRequestReviewCommentRequest request, ApiOptions options);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -124,7 +124,7 @@ namespace Octokit.Reactive
|
|||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The ID of the repository</param>
|
||||||
/// <param name="request">The sorting <see cref="PullRequestReviewCommentRequest">parameters</see></param>
|
/// <param name="request">The sorting <see cref="PullRequestReviewCommentRequest">parameters</see></param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
/// <returns>The list of <see cref="PullRequestReviewComment"/>s for the specified repository</returns>
|
/// <returns></returns>
|
||||||
IObservable<PullRequestReviewComment> GetAllForRepository(int repositoryId, PullRequestReviewCommentRequest request, ApiOptions options);
|
IObservable<PullRequestReviewComment> GetAllForRepository(int repositoryId, PullRequestReviewCommentRequest request, ApiOptions options);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -134,7 +134,7 @@ namespace Octokit.Reactive
|
|||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="number">The pull request review comment number</param>
|
/// <param name="number">The pull request review comment number</param>
|
||||||
/// <returns>The <see cref="PullRequestReviewComment"/></returns>
|
/// <returns></returns>
|
||||||
IObservable<PullRequestReviewComment> GetComment(string owner, string name, int number);
|
IObservable<PullRequestReviewComment> GetComment(string owner, string name, int number);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -143,7 +143,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>http://developer.github.com/v3/pulls/comments/#get-a-single-comment</remarks>
|
/// <remarks>http://developer.github.com/v3/pulls/comments/#get-a-single-comment</remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The ID of the repository</param>
|
||||||
/// <param name="number">The pull request review comment number</param>
|
/// <param name="number">The pull request review comment number</param>
|
||||||
/// <returns>The <see cref="PullRequestReviewComment"/></returns>
|
/// <returns></returns>
|
||||||
IObservable<PullRequestReviewComment> GetComment(int repositoryId, int number);
|
IObservable<PullRequestReviewComment> GetComment(int repositoryId, int number);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -154,7 +154,7 @@ namespace Octokit.Reactive
|
|||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="number">The Pull Request number</param>
|
/// <param name="number">The Pull Request number</param>
|
||||||
/// <param name="comment">The comment</param>
|
/// <param name="comment">The comment</param>
|
||||||
/// <returns>The created <see cref="PullRequestReviewComment"/></returns>
|
/// <returns></returns>
|
||||||
IObservable<PullRequestReviewComment> Create(string owner, string name, int number, PullRequestReviewCommentCreate comment);
|
IObservable<PullRequestReviewComment> Create(string owner, string name, int number, PullRequestReviewCommentCreate comment);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -164,7 +164,7 @@ namespace Octokit.Reactive
|
|||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The ID of the repository</param>
|
||||||
/// <param name="number">The Pull Request number</param>
|
/// <param name="number">The Pull Request number</param>
|
||||||
/// <param name="comment">The comment</param>
|
/// <param name="comment">The comment</param>
|
||||||
/// <returns>The created <see cref="PullRequestReviewComment"/></returns>
|
/// <returns></returns>
|
||||||
IObservable<PullRequestReviewComment> Create(int repositoryId, int number, PullRequestReviewCommentCreate comment);
|
IObservable<PullRequestReviewComment> Create(int repositoryId, int number, PullRequestReviewCommentCreate comment);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -175,7 +175,7 @@ namespace Octokit.Reactive
|
|||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="number">The pull request number</param>
|
/// <param name="number">The pull request number</param>
|
||||||
/// <param name="comment">The comment</param>
|
/// <param name="comment">The comment</param>
|
||||||
/// <returns>The created <see cref="PullRequestReviewComment"/></returns>
|
/// <returns></returns>
|
||||||
IObservable<PullRequestReviewComment> CreateReply(string owner, string name, int number, PullRequestReviewCommentReplyCreate comment);
|
IObservable<PullRequestReviewComment> CreateReply(string owner, string name, int number, PullRequestReviewCommentReplyCreate comment);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -185,7 +185,7 @@ namespace Octokit.Reactive
|
|||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The ID of the repository</param>
|
||||||
/// <param name="number">The pull request number</param>
|
/// <param name="number">The pull request number</param>
|
||||||
/// <param name="comment">The comment</param>
|
/// <param name="comment">The comment</param>
|
||||||
/// <returns>The created <see cref="PullRequestReviewComment"/></returns>
|
/// <returns></returns>
|
||||||
IObservable<PullRequestReviewComment> CreateReply(int repositoryId, int number, PullRequestReviewCommentReplyCreate comment);
|
IObservable<PullRequestReviewComment> CreateReply(int repositoryId, int number, PullRequestReviewCommentReplyCreate comment);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -196,7 +196,7 @@ namespace Octokit.Reactive
|
|||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="number">The pull request review comment number</param>
|
/// <param name="number">The pull request review comment number</param>
|
||||||
/// <param name="comment">The edited comment</param>
|
/// <param name="comment">The edited comment</param>
|
||||||
/// <returns>The edited <see cref="PullRequestReviewComment"/></returns>
|
/// <returns></returns>
|
||||||
IObservable<PullRequestReviewComment> Edit(string owner, string name, int number, PullRequestReviewCommentEdit comment);
|
IObservable<PullRequestReviewComment> Edit(string owner, string name, int number, PullRequestReviewCommentEdit comment);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -206,7 +206,7 @@ namespace Octokit.Reactive
|
|||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The ID of the repository</param>
|
||||||
/// <param name="number">The pull request review comment number</param>
|
/// <param name="number">The pull request review comment number</param>
|
||||||
/// <param name="comment">The edited comment</param>
|
/// <param name="comment">The edited comment</param>
|
||||||
/// <returns>The edited <see cref="PullRequestReviewComment"/></returns>
|
/// <returns></returns>
|
||||||
IObservable<PullRequestReviewComment> Edit(int repositoryId, int number, PullRequestReviewCommentEdit comment);
|
IObservable<PullRequestReviewComment> Edit(int repositoryId, int number, PullRequestReviewCommentEdit comment);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|||||||
@@ -31,7 +31,7 @@ namespace Octokit.Reactive
|
|||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="number">The pull request number</param>
|
/// <param name="number">The pull request number</param>
|
||||||
/// <returns>The list of <see cref="PullRequestReviewComment"/>s for the specified pull request</returns>
|
/// <returns></returns>
|
||||||
public IObservable<PullRequestReviewComment> GetAll(string owner, string name, int number)
|
public IObservable<PullRequestReviewComment> GetAll(string owner, string name, int number)
|
||||||
{
|
{
|
||||||
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
||||||
@@ -46,7 +46,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>http://developer.github.com/v3/pulls/comments/#list-comments-on-a-pull-request</remarks>
|
/// <remarks>http://developer.github.com/v3/pulls/comments/#list-comments-on-a-pull-request</remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The ID of the repository</param>
|
||||||
/// <param name="number">The pull request number</param>
|
/// <param name="number">The pull request number</param>
|
||||||
/// <returns>The list of <see cref="PullRequestReviewComment"/>s for the specified pull request</returns>
|
/// <returns></returns>
|
||||||
public IObservable<PullRequestReviewComment> GetAll(int repositoryId, int number)
|
public IObservable<PullRequestReviewComment> GetAll(int repositoryId, int number)
|
||||||
{
|
{
|
||||||
return GetAll(repositoryId, number, ApiOptions.None);
|
return GetAll(repositoryId, number, ApiOptions.None);
|
||||||
@@ -60,7 +60,7 @@ namespace Octokit.Reactive
|
|||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="number">The pull request number</param>
|
/// <param name="number">The pull request number</param>
|
||||||
/// <param name="options">Options for changing the API response</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>
|
/// <returns></returns>
|
||||||
public IObservable<PullRequestReviewComment> GetAll(string owner, string name, int number, ApiOptions options)
|
public IObservable<PullRequestReviewComment> GetAll(string owner, string name, int number, ApiOptions options)
|
||||||
{
|
{
|
||||||
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
||||||
@@ -77,7 +77,7 @@ namespace Octokit.Reactive
|
|||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The ID of the repository</param>
|
||||||
/// <param name="number">The pull request number</param>
|
/// <param name="number">The pull request number</param>
|
||||||
/// <param name="options">Options for changing the API response</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>
|
/// <returns></returns>
|
||||||
public IObservable<PullRequestReviewComment> GetAll(int repositoryId, int number, ApiOptions options)
|
public IObservable<PullRequestReviewComment> GetAll(int repositoryId, int number, ApiOptions options)
|
||||||
{
|
{
|
||||||
Ensure.ArgumentNotNull(options, "options");
|
Ensure.ArgumentNotNull(options, "options");
|
||||||
@@ -91,7 +91,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>http://developer.github.com/v3/pulls/comments/#list-comments-in-a-repository</remarks>
|
/// <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="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <returns>The list of <see cref="PullRequestReviewComment"/>s for the specified repository</returns>
|
/// <returns></returns>
|
||||||
public IObservable<PullRequestReviewComment> GetAllForRepository(string owner, string name)
|
public IObservable<PullRequestReviewComment> GetAllForRepository(string owner, string name)
|
||||||
{
|
{
|
||||||
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
||||||
@@ -105,7 +105,7 @@ namespace Octokit.Reactive
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>http://developer.github.com/v3/pulls/comments/#list-comments-in-a-repository</remarks>
|
/// <remarks>http://developer.github.com/v3/pulls/comments/#list-comments-in-a-repository</remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The ID of the repository</param>
|
||||||
/// <returns>The list of <see cref="PullRequestReviewComment"/>s for the specified repository</returns>
|
/// <returns></returns>
|
||||||
public IObservable<PullRequestReviewComment> GetAllForRepository(int repositoryId)
|
public IObservable<PullRequestReviewComment> GetAllForRepository(int repositoryId)
|
||||||
{
|
{
|
||||||
return GetAllForRepository(repositoryId, new PullRequestReviewCommentRequest(), ApiOptions.None);
|
return GetAllForRepository(repositoryId, new PullRequestReviewCommentRequest(), ApiOptions.None);
|
||||||
@@ -118,7 +118,7 @@ namespace Octokit.Reactive
|
|||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
/// <returns>The list of <see cref="PullRequestReviewComment"/>s for the specified repository</returns>
|
/// <returns></returns>
|
||||||
public IObservable<PullRequestReviewComment> GetAllForRepository(string owner, string name, ApiOptions options)
|
public IObservable<PullRequestReviewComment> GetAllForRepository(string owner, string name, ApiOptions options)
|
||||||
{
|
{
|
||||||
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
||||||
@@ -134,7 +134,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>http://developer.github.com/v3/pulls/comments/#list-comments-in-a-repository</remarks>
|
/// <remarks>http://developer.github.com/v3/pulls/comments/#list-comments-in-a-repository</remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The ID of the repository</param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
/// <returns>The list of <see cref="PullRequestReviewComment"/>s for the specified repository</returns>
|
/// <returns></returns>
|
||||||
public IObservable<PullRequestReviewComment> GetAllForRepository(int repositoryId, ApiOptions options)
|
public IObservable<PullRequestReviewComment> GetAllForRepository(int repositoryId, ApiOptions options)
|
||||||
{
|
{
|
||||||
Ensure.ArgumentNotNull(options, "options");
|
Ensure.ArgumentNotNull(options, "options");
|
||||||
@@ -149,7 +149,7 @@ namespace Octokit.Reactive
|
|||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name 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="request">The sorting <see cref="PullRequestReviewCommentRequest">parameters</see></param>
|
||||||
/// <returns>The list of <see cref="PullRequestReviewComment"/>s for the specified repository</returns>
|
/// <returns></returns>
|
||||||
public IObservable<PullRequestReviewComment> GetAllForRepository(string owner, string name, PullRequestReviewCommentRequest request)
|
public IObservable<PullRequestReviewComment> GetAllForRepository(string owner, string name, PullRequestReviewCommentRequest request)
|
||||||
{
|
{
|
||||||
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
||||||
@@ -165,7 +165,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>http://developer.github.com/v3/pulls/comments/#list-comments-in-a-repository</remarks>
|
/// <remarks>http://developer.github.com/v3/pulls/comments/#list-comments-in-a-repository</remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The ID of the repository</param>
|
||||||
/// <param name="request">The sorting <see cref="PullRequestReviewCommentRequest">parameters</see></param>
|
/// <param name="request">The sorting <see cref="PullRequestReviewCommentRequest">parameters</see></param>
|
||||||
/// <returns>The list of <see cref="PullRequestReviewComment"/>s for the specified repository</returns>
|
/// <returns></returns>
|
||||||
public IObservable<PullRequestReviewComment> GetAllForRepository(int repositoryId, PullRequestReviewCommentRequest request)
|
public IObservable<PullRequestReviewComment> GetAllForRepository(int repositoryId, PullRequestReviewCommentRequest request)
|
||||||
{
|
{
|
||||||
Ensure.ArgumentNotNull(request, "request");
|
Ensure.ArgumentNotNull(request, "request");
|
||||||
@@ -181,7 +181,7 @@ namespace Octokit.Reactive
|
|||||||
/// <param name="name">The name 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="request">The sorting <see cref="PullRequestReviewCommentRequest">parameters</see></param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
/// <returns>The list of <see cref="PullRequestReviewComment"/>s for the specified repository</returns>
|
/// <returns></returns>
|
||||||
public IObservable<PullRequestReviewComment> GetAllForRepository(string owner, string name, PullRequestReviewCommentRequest request, ApiOptions options)
|
public IObservable<PullRequestReviewComment> GetAllForRepository(string owner, string name, PullRequestReviewCommentRequest request, ApiOptions options)
|
||||||
{
|
{
|
||||||
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
||||||
@@ -200,7 +200,7 @@ namespace Octokit.Reactive
|
|||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The ID of the repository</param>
|
||||||
/// <param name="request">The sorting <see cref="PullRequestReviewCommentRequest">parameters</see></param>
|
/// <param name="request">The sorting <see cref="PullRequestReviewCommentRequest">parameters</see></param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
/// <returns>The list of <see cref="PullRequestReviewComment"/>s for the specified repository</returns>
|
/// <returns></returns>
|
||||||
public IObservable<PullRequestReviewComment> GetAllForRepository(int repositoryId, PullRequestReviewCommentRequest request, ApiOptions options)
|
public IObservable<PullRequestReviewComment> GetAllForRepository(int repositoryId, PullRequestReviewCommentRequest request, ApiOptions options)
|
||||||
{
|
{
|
||||||
Ensure.ArgumentNotNull(request, "request");
|
Ensure.ArgumentNotNull(request, "request");
|
||||||
@@ -217,7 +217,7 @@ namespace Octokit.Reactive
|
|||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="number">The pull request review comment number</param>
|
/// <param name="number">The pull request review comment number</param>
|
||||||
/// <returns>The <see cref="PullRequestReviewComment"/></returns>
|
/// <returns></returns>
|
||||||
public IObservable<PullRequestReviewComment> GetComment(string owner, string name, int number)
|
public IObservable<PullRequestReviewComment> GetComment(string owner, string name, int number)
|
||||||
{
|
{
|
||||||
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
||||||
@@ -232,7 +232,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>http://developer.github.com/v3/pulls/comments/#get-a-single-comment</remarks>
|
/// <remarks>http://developer.github.com/v3/pulls/comments/#get-a-single-comment</remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The ID of the repository</param>
|
||||||
/// <param name="number">The pull request review comment number</param>
|
/// <param name="number">The pull request review comment number</param>
|
||||||
/// <returns>The <see cref="PullRequestReviewComment"/></returns>
|
/// <returns></returns>
|
||||||
public IObservable<PullRequestReviewComment> GetComment(int repositoryId, int number)
|
public IObservable<PullRequestReviewComment> GetComment(int repositoryId, int number)
|
||||||
{
|
{
|
||||||
return _client.GetComment(repositoryId, number).ToObservable();
|
return _client.GetComment(repositoryId, number).ToObservable();
|
||||||
@@ -246,7 +246,7 @@ namespace Octokit.Reactive
|
|||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="number">The Pull Request number</param>
|
/// <param name="number">The Pull Request number</param>
|
||||||
/// <param name="comment">The comment</param>
|
/// <param name="comment">The comment</param>
|
||||||
/// <returns>The created <see cref="PullRequestReviewComment"/></returns>
|
/// <returns></returns>
|
||||||
public IObservable<PullRequestReviewComment> Create(string owner, string name, int number, PullRequestReviewCommentCreate comment)
|
public IObservable<PullRequestReviewComment> Create(string owner, string name, int number, PullRequestReviewCommentCreate comment)
|
||||||
{
|
{
|
||||||
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
||||||
@@ -263,7 +263,7 @@ namespace Octokit.Reactive
|
|||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The ID of the repository</param>
|
||||||
/// <param name="number">The Pull Request number</param>
|
/// <param name="number">The Pull Request number</param>
|
||||||
/// <param name="comment">The comment</param>
|
/// <param name="comment">The comment</param>
|
||||||
/// <returns>The created <see cref="PullRequestReviewComment"/></returns>
|
/// <returns></returns>
|
||||||
public IObservable<PullRequestReviewComment> Create(int repositoryId, int number, PullRequestReviewCommentCreate comment)
|
public IObservable<PullRequestReviewComment> Create(int repositoryId, int number, PullRequestReviewCommentCreate comment)
|
||||||
{
|
{
|
||||||
Ensure.ArgumentNotNull(comment, "comment");
|
Ensure.ArgumentNotNull(comment, "comment");
|
||||||
@@ -279,7 +279,7 @@ namespace Octokit.Reactive
|
|||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="number">The pull request number</param>
|
/// <param name="number">The pull request number</param>
|
||||||
/// <param name="comment">The comment</param>
|
/// <param name="comment">The comment</param>
|
||||||
/// <returns>The created <see cref="PullRequestReviewComment"/></returns>
|
/// <returns></returns>
|
||||||
public IObservable<PullRequestReviewComment> CreateReply(string owner, string name, int number, PullRequestReviewCommentReplyCreate comment)
|
public IObservable<PullRequestReviewComment> CreateReply(string owner, string name, int number, PullRequestReviewCommentReplyCreate comment)
|
||||||
{
|
{
|
||||||
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
||||||
@@ -296,7 +296,7 @@ namespace Octokit.Reactive
|
|||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The ID of the repository</param>
|
||||||
/// <param name="number">The pull request number</param>
|
/// <param name="number">The pull request number</param>
|
||||||
/// <param name="comment">The comment</param>
|
/// <param name="comment">The comment</param>
|
||||||
/// <returns>The created <see cref="PullRequestReviewComment"/></returns>
|
/// <returns></returns>
|
||||||
public IObservable<PullRequestReviewComment> CreateReply(int repositoryId, int number, PullRequestReviewCommentReplyCreate comment)
|
public IObservable<PullRequestReviewComment> CreateReply(int repositoryId, int number, PullRequestReviewCommentReplyCreate comment)
|
||||||
{
|
{
|
||||||
Ensure.ArgumentNotNull(comment, "comment");
|
Ensure.ArgumentNotNull(comment, "comment");
|
||||||
@@ -312,7 +312,7 @@ namespace Octokit.Reactive
|
|||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="number">The pull request review comment number</param>
|
/// <param name="number">The pull request review comment number</param>
|
||||||
/// <param name="comment">The edited comment</param>
|
/// <param name="comment">The edited comment</param>
|
||||||
/// <returns>The edited <see cref="PullRequestReviewComment"/></returns>
|
/// <returns></returns>
|
||||||
public IObservable<PullRequestReviewComment> Edit(string owner, string name, int number, PullRequestReviewCommentEdit comment)
|
public IObservable<PullRequestReviewComment> Edit(string owner, string name, int number, PullRequestReviewCommentEdit comment)
|
||||||
{
|
{
|
||||||
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
||||||
@@ -329,7 +329,7 @@ namespace Octokit.Reactive
|
|||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The ID of the repository</param>
|
||||||
/// <param name="number">The pull request review comment number</param>
|
/// <param name="number">The pull request review comment number</param>
|
||||||
/// <param name="comment">The edited comment</param>
|
/// <param name="comment">The edited comment</param>
|
||||||
/// <returns>The edited <see cref="PullRequestReviewComment"/></returns>
|
/// <returns></returns>
|
||||||
public IObservable<PullRequestReviewComment> Edit(int repositoryId, int number, PullRequestReviewCommentEdit comment)
|
public IObservable<PullRequestReviewComment> Edit(int repositoryId, int number, PullRequestReviewCommentEdit comment)
|
||||||
{
|
{
|
||||||
Ensure.ArgumentNotNull(comment, "comment");
|
Ensure.ArgumentNotNull(comment, "comment");
|
||||||
|
|||||||
@@ -18,7 +18,7 @@ namespace Octokit
|
|||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="number">The pull request number</param>
|
/// <param name="number">The pull request number</param>
|
||||||
/// <returns>The list of <see cref="PullRequestReviewComment"/>s for the specified pull request</returns>
|
/// <returns></returns>
|
||||||
Task<IReadOnlyList<PullRequestReviewComment>> GetAll(string owner, string name, int number);
|
Task<IReadOnlyList<PullRequestReviewComment>> GetAll(string owner, string name, int number);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -27,7 +27,7 @@ namespace Octokit
|
|||||||
/// <remarks>http://developer.github.com/v3/pulls/comments/#list-comments-on-a-pull-request</remarks>
|
/// <remarks>http://developer.github.com/v3/pulls/comments/#list-comments-on-a-pull-request</remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The ID of the repository</param>
|
||||||
/// <param name="number">The pull request number</param>
|
/// <param name="number">The pull request number</param>
|
||||||
/// <returns>The list of <see cref="PullRequestReviewComment"/>s for the specified pull request</returns>
|
/// <returns></returns>
|
||||||
Task<IReadOnlyList<PullRequestReviewComment>> GetAll(int repositoryId, int number);
|
Task<IReadOnlyList<PullRequestReviewComment>> GetAll(int repositoryId, int number);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -38,7 +38,7 @@ namespace Octokit
|
|||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="number">The pull request number</param>
|
/// <param name="number">The pull request number</param>
|
||||||
/// <param name="options">Options for changing the API response</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>
|
/// <returns></returns>
|
||||||
Task<IReadOnlyList<PullRequestReviewComment>> GetAll(string owner, string name, int number, ApiOptions options);
|
Task<IReadOnlyList<PullRequestReviewComment>> GetAll(string owner, string name, int number, ApiOptions options);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -48,7 +48,7 @@ namespace Octokit
|
|||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The ID of the repository</param>
|
||||||
/// <param name="number">The pull request number</param>
|
/// <param name="number">The pull request number</param>
|
||||||
/// <param name="options">Options for changing the API response</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>
|
/// <returns></returns>
|
||||||
Task<IReadOnlyList<PullRequestReviewComment>> GetAll(int repositoryId, int number, ApiOptions options);
|
Task<IReadOnlyList<PullRequestReviewComment>> GetAll(int repositoryId, int number, ApiOptions options);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -57,7 +57,7 @@ namespace Octokit
|
|||||||
/// <remarks>http://developer.github.com/v3/pulls/comments/#list-comments-in-a-repository</remarks>
|
/// <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="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <returns>The list of <see cref="PullRequestReviewComment"/>s for the specified repository</returns>
|
/// <returns></returns>
|
||||||
Task<IReadOnlyList<PullRequestReviewComment>> GetAllForRepository(string owner, string name);
|
Task<IReadOnlyList<PullRequestReviewComment>> GetAllForRepository(string owner, string name);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -65,7 +65,7 @@ namespace Octokit
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>http://developer.github.com/v3/pulls/comments/#list-comments-in-a-repository</remarks>
|
/// <remarks>http://developer.github.com/v3/pulls/comments/#list-comments-in-a-repository</remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The ID of the repository</param>
|
||||||
/// <returns>The list of <see cref="PullRequestReviewComment"/>s for the specified repository</returns>
|
/// <returns></returns>
|
||||||
Task<IReadOnlyList<PullRequestReviewComment>> GetAllForRepository(int repositoryId);
|
Task<IReadOnlyList<PullRequestReviewComment>> GetAllForRepository(int repositoryId);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -75,7 +75,7 @@ namespace Octokit
|
|||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
/// <returns>The list of <see cref="PullRequestReviewComment"/>s for the specified repository</returns>
|
/// <returns></returns>
|
||||||
Task<IReadOnlyList<PullRequestReviewComment>> GetAllForRepository(string owner, string name, ApiOptions options);
|
Task<IReadOnlyList<PullRequestReviewComment>> GetAllForRepository(string owner, string name, ApiOptions options);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -84,7 +84,7 @@ namespace Octokit
|
|||||||
/// <remarks>http://developer.github.com/v3/pulls/comments/#list-comments-in-a-repository</remarks>
|
/// <remarks>http://developer.github.com/v3/pulls/comments/#list-comments-in-a-repository</remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The ID of the repository</param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
/// <returns>The list of <see cref="PullRequestReviewComment"/>s for the specified repository</returns>
|
/// <returns></returns>
|
||||||
Task<IReadOnlyList<PullRequestReviewComment>> GetAllForRepository(int repositoryId, ApiOptions options);
|
Task<IReadOnlyList<PullRequestReviewComment>> GetAllForRepository(int repositoryId, ApiOptions options);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -94,7 +94,7 @@ namespace Octokit
|
|||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name 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="request">The sorting <see cref="PullRequestReviewCommentRequest">parameters</see></param>
|
||||||
/// <returns>The list of <see cref="PullRequestReviewComment"/>s for the specified repository</returns>
|
/// <returns></returns>
|
||||||
Task<IReadOnlyList<PullRequestReviewComment>> GetAllForRepository(string owner, string name, PullRequestReviewCommentRequest request);
|
Task<IReadOnlyList<PullRequestReviewComment>> GetAllForRepository(string owner, string name, PullRequestReviewCommentRequest request);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -103,7 +103,7 @@ namespace Octokit
|
|||||||
/// <remarks>http://developer.github.com/v3/pulls/comments/#list-comments-in-a-repository</remarks>
|
/// <remarks>http://developer.github.com/v3/pulls/comments/#list-comments-in-a-repository</remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The ID of the repository</param>
|
||||||
/// <param name="request">The sorting <see cref="PullRequestReviewCommentRequest">parameters</see></param>
|
/// <param name="request">The sorting <see cref="PullRequestReviewCommentRequest">parameters</see></param>
|
||||||
/// <returns>The list of <see cref="PullRequestReviewComment"/>s for the specified repository</returns>
|
/// <returns></returns>
|
||||||
Task<IReadOnlyList<PullRequestReviewComment>> GetAllForRepository(int repositoryId, PullRequestReviewCommentRequest request);
|
Task<IReadOnlyList<PullRequestReviewComment>> GetAllForRepository(int repositoryId, PullRequestReviewCommentRequest request);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -114,7 +114,7 @@ namespace Octokit
|
|||||||
/// <param name="name">The name 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="request">The sorting <see cref="PullRequestReviewCommentRequest">parameters</see></param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
/// <returns>The list of <see cref="PullRequestReviewComment"/>s for the specified repository</returns>
|
/// <returns></returns>
|
||||||
Task<IReadOnlyList<PullRequestReviewComment>> GetAllForRepository(string owner, string name, PullRequestReviewCommentRequest request, ApiOptions options);
|
Task<IReadOnlyList<PullRequestReviewComment>> GetAllForRepository(string owner, string name, PullRequestReviewCommentRequest request, ApiOptions options);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -124,7 +124,7 @@ namespace Octokit
|
|||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The ID of the repository</param>
|
||||||
/// <param name="request">The sorting <see cref="PullRequestReviewCommentRequest">parameters</see></param>
|
/// <param name="request">The sorting <see cref="PullRequestReviewCommentRequest">parameters</see></param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
/// <returns>The list of <see cref="PullRequestReviewComment"/>s for the specified repository</returns>
|
/// <returns></returns>
|
||||||
Task<IReadOnlyList<PullRequestReviewComment>> GetAllForRepository(int repositoryId, PullRequestReviewCommentRequest request, ApiOptions options);
|
Task<IReadOnlyList<PullRequestReviewComment>> GetAllForRepository(int repositoryId, PullRequestReviewCommentRequest request, ApiOptions options);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -134,7 +134,7 @@ namespace Octokit
|
|||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="number">The pull request review comment number</param>
|
/// <param name="number">The pull request review comment number</param>
|
||||||
/// <returns>The <see cref="PullRequestReviewComment"/></returns>
|
/// <returns></returns>
|
||||||
Task<PullRequestReviewComment> GetComment(string owner, string name, int number);
|
Task<PullRequestReviewComment> GetComment(string owner, string name, int number);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -143,7 +143,7 @@ namespace Octokit
|
|||||||
/// <remarks>http://developer.github.com/v3/pulls/comments/#get-a-single-comment</remarks>
|
/// <remarks>http://developer.github.com/v3/pulls/comments/#get-a-single-comment</remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The ID of the repository</param>
|
||||||
/// <param name="number">The pull request review comment number</param>
|
/// <param name="number">The pull request review comment number</param>
|
||||||
/// <returns>The <see cref="PullRequestReviewComment"/></returns>
|
/// <returns></returns>
|
||||||
Task<PullRequestReviewComment> GetComment(int repositoryId, int number);
|
Task<PullRequestReviewComment> GetComment(int repositoryId, int number);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -154,7 +154,7 @@ namespace Octokit
|
|||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="number">The Pull Request number</param>
|
/// <param name="number">The Pull Request number</param>
|
||||||
/// <param name="comment">The comment</param>
|
/// <param name="comment">The comment</param>
|
||||||
/// <returns>The created <see cref="PullRequestReviewComment"/></returns>
|
/// <returns></returns>
|
||||||
Task<PullRequestReviewComment> Create(string owner, string name, int number, PullRequestReviewCommentCreate comment);
|
Task<PullRequestReviewComment> Create(string owner, string name, int number, PullRequestReviewCommentCreate comment);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -164,7 +164,7 @@ namespace Octokit
|
|||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The ID of the repository</param>
|
||||||
/// <param name="number">The Pull Request number</param>
|
/// <param name="number">The Pull Request number</param>
|
||||||
/// <param name="comment">The comment</param>
|
/// <param name="comment">The comment</param>
|
||||||
/// <returns>The created <see cref="PullRequestReviewComment"/></returns>
|
/// <returns></returns>
|
||||||
Task<PullRequestReviewComment> Create(int repositoryId, int number, PullRequestReviewCommentCreate comment);
|
Task<PullRequestReviewComment> Create(int repositoryId, int number, PullRequestReviewCommentCreate comment);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -175,7 +175,7 @@ namespace Octokit
|
|||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="number">The pull request number</param>
|
/// <param name="number">The pull request number</param>
|
||||||
/// <param name="comment">The comment</param>
|
/// <param name="comment">The comment</param>
|
||||||
/// <returns>The created <see cref="PullRequestReviewComment"/></returns>
|
/// <returns></returns>
|
||||||
Task<PullRequestReviewComment> CreateReply(string owner, string name, int number, PullRequestReviewCommentReplyCreate comment);
|
Task<PullRequestReviewComment> CreateReply(string owner, string name, int number, PullRequestReviewCommentReplyCreate comment);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -185,7 +185,7 @@ namespace Octokit
|
|||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The ID of the repository</param>
|
||||||
/// <param name="number">The pull request number</param>
|
/// <param name="number">The pull request number</param>
|
||||||
/// <param name="comment">The comment</param>
|
/// <param name="comment">The comment</param>
|
||||||
/// <returns>The created <see cref="PullRequestReviewComment"/></returns>
|
/// <returns></returns>
|
||||||
Task<PullRequestReviewComment> CreateReply(int repositoryId, int number, PullRequestReviewCommentReplyCreate comment);
|
Task<PullRequestReviewComment> CreateReply(int repositoryId, int number, PullRequestReviewCommentReplyCreate comment);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -196,7 +196,7 @@ namespace Octokit
|
|||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="number">The pull request review comment number</param>
|
/// <param name="number">The pull request review comment number</param>
|
||||||
/// <param name="comment">The edited comment</param>
|
/// <param name="comment">The edited comment</param>
|
||||||
/// <returns>The edited <see cref="PullRequestReviewComment"/></returns>
|
/// <returns></returns>
|
||||||
Task<PullRequestReviewComment> Edit(string owner, string name, int number, PullRequestReviewCommentEdit comment);
|
Task<PullRequestReviewComment> Edit(string owner, string name, int number, PullRequestReviewCommentEdit comment);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -206,7 +206,7 @@ namespace Octokit
|
|||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The ID of the repository</param>
|
||||||
/// <param name="number">The pull request review comment number</param>
|
/// <param name="number">The pull request review comment number</param>
|
||||||
/// <param name="comment">The edited comment</param>
|
/// <param name="comment">The edited comment</param>
|
||||||
/// <returns>The edited <see cref="PullRequestReviewComment"/></returns>
|
/// <returns></returns>
|
||||||
Task<PullRequestReviewComment> Edit(int repositoryId, int number, PullRequestReviewCommentEdit comment);
|
Task<PullRequestReviewComment> Edit(int repositoryId, int number, PullRequestReviewCommentEdit comment);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ namespace Octokit
|
|||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="number">The pull request number</param>
|
/// <param name="number">The pull request number</param>
|
||||||
/// <returns>The list of <see cref="PullRequestReviewComment"/>s for the specified pull request</returns>
|
/// <returns></returns>
|
||||||
public Task<IReadOnlyList<PullRequestReviewComment>> GetAll(string owner, string name, int number)
|
public Task<IReadOnlyList<PullRequestReviewComment>> GetAll(string owner, string name, int number)
|
||||||
{
|
{
|
||||||
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
||||||
@@ -39,7 +39,7 @@ namespace Octokit
|
|||||||
/// <remarks>http://developer.github.com/v3/pulls/comments/#list-comments-on-a-pull-request</remarks>
|
/// <remarks>http://developer.github.com/v3/pulls/comments/#list-comments-on-a-pull-request</remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The ID of the repository</param>
|
||||||
/// <param name="number">The pull request number</param>
|
/// <param name="number">The pull request number</param>
|
||||||
/// <returns>The list of <see cref="PullRequestReviewComment"/>s for the specified pull request</returns>
|
/// <returns></returns>
|
||||||
public Task<IReadOnlyList<PullRequestReviewComment>> GetAll(int repositoryId, int number)
|
public Task<IReadOnlyList<PullRequestReviewComment>> GetAll(int repositoryId, int number)
|
||||||
{
|
{
|
||||||
return GetAll(repositoryId, number, ApiOptions.None);
|
return GetAll(repositoryId, number, ApiOptions.None);
|
||||||
@@ -53,7 +53,7 @@ namespace Octokit
|
|||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="number">The pull request number</param>
|
/// <param name="number">The pull request number</param>
|
||||||
/// <param name="options">Options for changing the API response</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>
|
/// <returns></returns>
|
||||||
public Task<IReadOnlyList<PullRequestReviewComment>> GetAll(string owner, string name, int number, ApiOptions options)
|
public Task<IReadOnlyList<PullRequestReviewComment>> GetAll(string owner, string name, int number, ApiOptions options)
|
||||||
{
|
{
|
||||||
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
||||||
@@ -70,7 +70,7 @@ namespace Octokit
|
|||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The ID of the repository</param>
|
||||||
/// <param name="number">The pull request number</param>
|
/// <param name="number">The pull request number</param>
|
||||||
/// <param name="options">Options for changing the API response</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>
|
/// <returns></returns>
|
||||||
public Task<IReadOnlyList<PullRequestReviewComment>> GetAll(int repositoryId, int number, ApiOptions options)
|
public Task<IReadOnlyList<PullRequestReviewComment>> GetAll(int repositoryId, int number, ApiOptions options)
|
||||||
{
|
{
|
||||||
Ensure.ArgumentNotNull(options, "options");
|
Ensure.ArgumentNotNull(options, "options");
|
||||||
@@ -84,7 +84,7 @@ namespace Octokit
|
|||||||
/// <remarks>http://developer.github.com/v3/pulls/comments/#list-comments-in-a-repository</remarks>
|
/// <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="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <returns>The list of <see cref="PullRequestReviewComment"/>s for the specified repository</returns>
|
/// <returns></returns>
|
||||||
public Task<IReadOnlyList<PullRequestReviewComment>> GetAllForRepository(string owner, string name)
|
public Task<IReadOnlyList<PullRequestReviewComment>> GetAllForRepository(string owner, string name)
|
||||||
{
|
{
|
||||||
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
||||||
@@ -98,7 +98,7 @@ namespace Octokit
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>http://developer.github.com/v3/pulls/comments/#list-comments-in-a-repository</remarks>
|
/// <remarks>http://developer.github.com/v3/pulls/comments/#list-comments-in-a-repository</remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The ID of the repository</param>
|
||||||
/// <returns>The list of <see cref="PullRequestReviewComment"/>s for the specified repository</returns>
|
/// <returns></returns>
|
||||||
public Task<IReadOnlyList<PullRequestReviewComment>> GetAllForRepository(int repositoryId)
|
public Task<IReadOnlyList<PullRequestReviewComment>> GetAllForRepository(int repositoryId)
|
||||||
{
|
{
|
||||||
return GetAllForRepository(repositoryId, new PullRequestReviewCommentRequest(), ApiOptions.None);
|
return GetAllForRepository(repositoryId, new PullRequestReviewCommentRequest(), ApiOptions.None);
|
||||||
@@ -111,7 +111,7 @@ namespace Octokit
|
|||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
/// <returns>The list of <see cref="PullRequestReviewComment"/>s for the specified repository</returns>
|
/// <returns></returns>
|
||||||
public Task<IReadOnlyList<PullRequestReviewComment>> GetAllForRepository(string owner, string name, ApiOptions options)
|
public Task<IReadOnlyList<PullRequestReviewComment>> GetAllForRepository(string owner, string name, ApiOptions options)
|
||||||
{
|
{
|
||||||
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
||||||
@@ -127,7 +127,7 @@ namespace Octokit
|
|||||||
/// <remarks>http://developer.github.com/v3/pulls/comments/#list-comments-in-a-repository</remarks>
|
/// <remarks>http://developer.github.com/v3/pulls/comments/#list-comments-in-a-repository</remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The ID of the repository</param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
/// <returns>The list of <see cref="PullRequestReviewComment"/>s for the specified repository</returns>
|
/// <returns></returns>
|
||||||
public Task<IReadOnlyList<PullRequestReviewComment>> GetAllForRepository(int repositoryId, ApiOptions options)
|
public Task<IReadOnlyList<PullRequestReviewComment>> GetAllForRepository(int repositoryId, ApiOptions options)
|
||||||
{
|
{
|
||||||
Ensure.ArgumentNotNull(options, "options");
|
Ensure.ArgumentNotNull(options, "options");
|
||||||
@@ -142,7 +142,7 @@ namespace Octokit
|
|||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name 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="request">The sorting <see cref="PullRequestReviewCommentRequest">parameters</see></param>
|
||||||
/// <returns>The list of <see cref="PullRequestReviewComment"/>s for the specified repository</returns>
|
/// <returns></returns>
|
||||||
public Task<IReadOnlyList<PullRequestReviewComment>> GetAllForRepository(string owner, string name, PullRequestReviewCommentRequest request)
|
public Task<IReadOnlyList<PullRequestReviewComment>> GetAllForRepository(string owner, string name, PullRequestReviewCommentRequest request)
|
||||||
{
|
{
|
||||||
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
||||||
@@ -158,7 +158,7 @@ namespace Octokit
|
|||||||
/// <remarks>http://developer.github.com/v3/pulls/comments/#list-comments-in-a-repository</remarks>
|
/// <remarks>http://developer.github.com/v3/pulls/comments/#list-comments-in-a-repository</remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The ID of the repository</param>
|
||||||
/// <param name="request">The sorting <see cref="PullRequestReviewCommentRequest">parameters</see></param>
|
/// <param name="request">The sorting <see cref="PullRequestReviewCommentRequest">parameters</see></param>
|
||||||
/// <returns>The list of <see cref="PullRequestReviewComment"/>s for the specified repository</returns>
|
/// <returns></returns>
|
||||||
public Task<IReadOnlyList<PullRequestReviewComment>> GetAllForRepository(int repositoryId, PullRequestReviewCommentRequest request)
|
public Task<IReadOnlyList<PullRequestReviewComment>> GetAllForRepository(int repositoryId, PullRequestReviewCommentRequest request)
|
||||||
{
|
{
|
||||||
Ensure.ArgumentNotNull(request, "request");
|
Ensure.ArgumentNotNull(request, "request");
|
||||||
@@ -174,7 +174,7 @@ namespace Octokit
|
|||||||
/// <param name="name">The name 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="request">The sorting <see cref="PullRequestReviewCommentRequest">parameters</see></param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
/// <returns>The list of <see cref="PullRequestReviewComment"/>s for the specified repository</returns>
|
/// <returns></returns>
|
||||||
public Task<IReadOnlyList<PullRequestReviewComment>> GetAllForRepository(string owner, string name, PullRequestReviewCommentRequest request, ApiOptions options)
|
public Task<IReadOnlyList<PullRequestReviewComment>> GetAllForRepository(string owner, string name, PullRequestReviewCommentRequest request, ApiOptions options)
|
||||||
{
|
{
|
||||||
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
||||||
@@ -192,7 +192,7 @@ namespace Octokit
|
|||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The ID of the repository</param>
|
||||||
/// <param name="request">The sorting <see cref="PullRequestReviewCommentRequest">parameters</see></param>
|
/// <param name="request">The sorting <see cref="PullRequestReviewCommentRequest">parameters</see></param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
/// <returns>The list of <see cref="PullRequestReviewComment"/>s for the specified repository</returns>
|
/// <returns></returns>
|
||||||
public Task<IReadOnlyList<PullRequestReviewComment>> GetAllForRepository(int repositoryId, PullRequestReviewCommentRequest request, ApiOptions options)
|
public Task<IReadOnlyList<PullRequestReviewComment>> GetAllForRepository(int repositoryId, PullRequestReviewCommentRequest request, ApiOptions options)
|
||||||
{
|
{
|
||||||
Ensure.ArgumentNotNull(request, "request");
|
Ensure.ArgumentNotNull(request, "request");
|
||||||
@@ -208,7 +208,7 @@ namespace Octokit
|
|||||||
/// <param name="owner">The owner of the repository</param>
|
/// <param name="owner">The owner of the repository</param>
|
||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="number">The pull request review comment number</param>
|
/// <param name="number">The pull request review comment number</param>
|
||||||
/// <returns>The <see cref="PullRequestReviewComment"/></returns>
|
/// <returns></returns>
|
||||||
public Task<PullRequestReviewComment> GetComment(string owner, string name, int number)
|
public Task<PullRequestReviewComment> GetComment(string owner, string name, int number)
|
||||||
{
|
{
|
||||||
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
||||||
@@ -223,7 +223,7 @@ namespace Octokit
|
|||||||
/// <remarks>http://developer.github.com/v3/pulls/comments/#get-a-single-comment</remarks>
|
/// <remarks>http://developer.github.com/v3/pulls/comments/#get-a-single-comment</remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The ID of the repository</param>
|
||||||
/// <param name="number">The pull request review comment number</param>
|
/// <param name="number">The pull request review comment number</param>
|
||||||
/// <returns>The <see cref="PullRequestReviewComment"/></returns>
|
/// <returns></returns>
|
||||||
public Task<PullRequestReviewComment> GetComment(int repositoryId, int number)
|
public Task<PullRequestReviewComment> GetComment(int repositoryId, int number)
|
||||||
{
|
{
|
||||||
return ApiConnection.Get<PullRequestReviewComment>(ApiUrls.PullRequestReviewComment(repositoryId, number));
|
return ApiConnection.Get<PullRequestReviewComment>(ApiUrls.PullRequestReviewComment(repositoryId, number));
|
||||||
@@ -237,7 +237,7 @@ namespace Octokit
|
|||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="number">The Pull Request number</param>
|
/// <param name="number">The Pull Request number</param>
|
||||||
/// <param name="comment">The comment</param>
|
/// <param name="comment">The comment</param>
|
||||||
/// <returns>The created <see cref="PullRequestReviewComment"/></returns>
|
/// <returns></returns>
|
||||||
public async Task<PullRequestReviewComment> Create(string owner, string name, int number, PullRequestReviewCommentCreate comment)
|
public async Task<PullRequestReviewComment> Create(string owner, string name, int number, PullRequestReviewCommentCreate comment)
|
||||||
{
|
{
|
||||||
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
||||||
@@ -262,7 +262,7 @@ namespace Octokit
|
|||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The ID of the repository</param>
|
||||||
/// <param name="number">The Pull Request number</param>
|
/// <param name="number">The Pull Request number</param>
|
||||||
/// <param name="comment">The comment</param>
|
/// <param name="comment">The comment</param>
|
||||||
/// <returns>The created <see cref="PullRequestReviewComment"/></returns>
|
/// <returns></returns>
|
||||||
public async Task<PullRequestReviewComment> Create(int repositoryId, int number, PullRequestReviewCommentCreate comment)
|
public async Task<PullRequestReviewComment> Create(int repositoryId, int number, PullRequestReviewCommentCreate comment)
|
||||||
{
|
{
|
||||||
Ensure.ArgumentNotNull(comment, "comment");
|
Ensure.ArgumentNotNull(comment, "comment");
|
||||||
@@ -286,7 +286,7 @@ namespace Octokit
|
|||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="number">The pull request number</param>
|
/// <param name="number">The pull request number</param>
|
||||||
/// <param name="comment">The comment</param>
|
/// <param name="comment">The comment</param>
|
||||||
/// <returns>The created <see cref="PullRequestReviewComment"/></returns>
|
/// <returns></returns>
|
||||||
public async Task<PullRequestReviewComment> CreateReply(string owner, string name, int number, PullRequestReviewCommentReplyCreate comment)
|
public async Task<PullRequestReviewComment> CreateReply(string owner, string name, int number, PullRequestReviewCommentReplyCreate comment)
|
||||||
{
|
{
|
||||||
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
||||||
@@ -311,7 +311,7 @@ namespace Octokit
|
|||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The ID of the repository</param>
|
||||||
/// <param name="number">The pull request number</param>
|
/// <param name="number">The pull request number</param>
|
||||||
/// <param name="comment">The comment</param>
|
/// <param name="comment">The comment</param>
|
||||||
/// <returns>The created <see cref="PullRequestReviewComment"/></returns>
|
/// <returns></returns>
|
||||||
public async Task<PullRequestReviewComment> CreateReply(int repositoryId, int number, PullRequestReviewCommentReplyCreate comment)
|
public async Task<PullRequestReviewComment> CreateReply(int repositoryId, int number, PullRequestReviewCommentReplyCreate comment)
|
||||||
{
|
{
|
||||||
Ensure.ArgumentNotNull(comment, "comment");
|
Ensure.ArgumentNotNull(comment, "comment");
|
||||||
@@ -335,7 +335,7 @@ namespace Octokit
|
|||||||
/// <param name="name">The name of the repository</param>
|
/// <param name="name">The name of the repository</param>
|
||||||
/// <param name="number">The pull request review comment number</param>
|
/// <param name="number">The pull request review comment number</param>
|
||||||
/// <param name="comment">The edited comment</param>
|
/// <param name="comment">The edited comment</param>
|
||||||
/// <returns>The edited <see cref="PullRequestReviewComment"/></returns>
|
/// <returns></returns>
|
||||||
public Task<PullRequestReviewComment> Edit(string owner, string name, int number, PullRequestReviewCommentEdit comment)
|
public Task<PullRequestReviewComment> Edit(string owner, string name, int number, PullRequestReviewCommentEdit comment)
|
||||||
{
|
{
|
||||||
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
||||||
@@ -352,7 +352,7 @@ namespace Octokit
|
|||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The ID of the repository</param>
|
||||||
/// <param name="number">The pull request review comment number</param>
|
/// <param name="number">The pull request review comment number</param>
|
||||||
/// <param name="comment">The edited comment</param>
|
/// <param name="comment">The edited comment</param>
|
||||||
/// <returns>The edited <see cref="PullRequestReviewComment"/></returns>
|
/// <returns></returns>
|
||||||
public Task<PullRequestReviewComment> Edit(int repositoryId, int number, PullRequestReviewCommentEdit comment)
|
public Task<PullRequestReviewComment> Edit(int repositoryId, int number, PullRequestReviewCommentEdit comment)
|
||||||
{
|
{
|
||||||
Ensure.ArgumentNotNull(comment, "comment");
|
Ensure.ArgumentNotNull(comment, "comment");
|
||||||
|
|||||||
Reference in New Issue
Block a user