This commit is contained in:
aedampir@gmail.com
2016-07-17 16:29:32 +07:00
parent b47b05489e
commit 44b0f4039d
167 changed files with 999 additions and 999 deletions
@@ -43,7 +43,7 @@ namespace Octokit.Reactive
/// Gets a single Issue Comment by id.
/// </summary>
/// <remarks>http://developer.github.com/v3/issues/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="id">The issue comment id</param>
public IObservable<IssueComment> Get(int repositoryId, int id)
{
@@ -68,7 +68,7 @@ namespace Octokit.Reactive
/// Gets Issue Comments for a repository.
/// </summary>
/// <remarks>http://developer.github.com/v3/issues/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>
public IObservable<IssueComment> GetAllForRepository(int repositoryId)
{
return GetAllForRepository(repositoryId, ApiOptions.None);
@@ -94,7 +94,7 @@ namespace Octokit.Reactive
/// Gets Issue Comments for a repository.
/// </summary>
/// <remarks>http://developer.github.com/v3/issues/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>
public IObservable<IssueComment> GetAllForRepository(int repositoryId, ApiOptions options)
{
@@ -122,7 +122,7 @@ namespace Octokit.Reactive
/// Gets Issue Comments for a specified Issue.
/// </summary>
/// <remarks>http://developer.github.com/v3/issues/comments/#list-comments-on-an-issue</remarks>
/// <param name="repositoryId">The ID of the repository</param>
/// <param name="repositoryId">The Id of the repository</param>
/// <param name="number">The issue number</param>
public IObservable<IssueComment> GetAllForIssue(int repositoryId, int number)
{
@@ -150,7 +150,7 @@ namespace Octokit.Reactive
/// Gets Issue Comments for a specified Issue.
/// </summary>
/// <remarks>http://developer.github.com/v3/issues/comments/#list-comments-on-an-issue</remarks>
/// <param name="repositoryId">The ID of the repository</param>
/// <param name="repositoryId">The Id of the repository</param>
/// <param name="number">The issue number</param>
/// <param name="options">Options for changing the API response</param>
public IObservable<IssueComment> GetAllForIssue(int repositoryId, int number, ApiOptions options)
@@ -181,7 +181,7 @@ namespace Octokit.Reactive
/// Creates a new Issue Comment for a specified Issue.
/// </summary>
/// <remarks>http://developer.github.com/v3/issues/comments/#create-a-comment</remarks>
/// <param name="repositoryId">The ID of the repository</param>
/// <param name="repositoryId">The Id of the repository</param>
/// <param name="number">The number of the issue</param>
/// <param name="newComment">The text of the new comment</param>
public IObservable<IssueComment> Create(int repositoryId, int number, string newComment)
@@ -212,7 +212,7 @@ namespace Octokit.Reactive
/// Updates a specified Issue Comment.
/// </summary>
/// <remarks>http://developer.github.com/v3/issues/comments/#edit-a-comment</remarks>
/// <param name="repositoryId">The ID of the repository</param>
/// <param name="repositoryId">The Id of the repository</param>
/// <param name="id">The comment id</param>
/// <param name="commentUpdate">The modified comment</param>
public IObservable<IssueComment> Update(int repositoryId, int id, string commentUpdate)
@@ -241,7 +241,7 @@ namespace Octokit.Reactive
/// Deletes the specified Issue Comment
/// </summary>
/// <remarks>http://developer.github.com/v3/issues/comments/#delete-a-comment</remarks>
/// <param name="repositoryId">The ID of the repository</param>
/// <param name="repositoryId">The Id of the repository</param>
/// <param name="id">The comment id</param>
public IObservable<Unit> Delete(int repositoryId, int id)
{