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

View File

@@ -23,7 +23,7 @@ namespace Octokit.Reactive
/// <summary>
/// Gets the list of hooks defined for a repository
/// </summary>
/// <param name="repositoryId">The repository's ID</param>
/// <param name="repositoryId">The Id of the repository</param>
/// <remarks>See <a href="http://developer.github.com/v3/repos/hooks/#list">API documentation</a> for more information.</remarks>
IObservable<RepositoryHook> GetAll(int repositoryId);
@@ -39,7 +39,7 @@ namespace Octokit.Reactive
/// <summary>
/// Gets the list of hooks defined for a repository
/// </summary>
/// <param name="repositoryId">The repository's ID</param>
/// <param name="repositoryId">The Id of the repository</param>
/// <param name="options">Options for changing the API response</param>
/// <remarks>See <a href="http://developer.github.com/v3/repos/hooks/#list">API documentation</a> for more information.</remarks>
IObservable<RepositoryHook> GetAll(int repositoryId, ApiOptions options);
@@ -57,7 +57,7 @@ namespace Octokit.Reactive
/// <summary>
/// Gets a single hook by Id
/// </summary>
/// <param name="repositoryId">The repository's ID</param>
/// <param name="repositoryId">The Id of the repository</param>
/// <param name="hookId">The repository's hook id</param>
/// <remarks>See <a href="http://developer.github.com/v3/repos/hooks/#get-single-hook">API documentation</a> for more information.</remarks>
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get", Justification = "This is ok; we're matching HTTP verbs not keyworks")]
@@ -75,7 +75,7 @@ namespace Octokit.Reactive
/// <summary>
/// Creates a hook for a repository
/// </summary>
/// <param name="repositoryId">The repository's ID</param>
/// <param name="repositoryId">The Id of the repository</param>
/// <param name="hook">The hook's parameters</param>
/// <remarks>See <a href="http://developer.github.com/v3/repos/hooks/#create-a-hook">API documentation</a> for more information.</remarks>
IObservable<RepositoryHook> Create(int repositoryId, NewRepositoryHook hook);
@@ -93,7 +93,7 @@ namespace Octokit.Reactive
/// <summary>
/// Edits a hook for a repository
/// </summary>
/// <param name="repositoryId">The repository's ID</param>
/// <param name="repositoryId">The Id of the repository</param>
/// <param name="hookId">The repository's hook id</param>
/// <param name="hook">The requested changes to an edit repository hook</param>
/// <remarks>See <a href="http://developer.github.com/v3/repos/hooks/#edit-a-hook">API documentation</a> for more information.</remarks>
@@ -113,7 +113,7 @@ namespace Octokit.Reactive
/// <summary>
/// Tests a hook for a repository
/// </summary>
/// <param name="repositoryId">The repository's ID</param>
/// <param name="repositoryId">The Id of the repository</param>
/// <param name="hookId">The repository's hook id</param>
/// <remarks>See <a href="http://developer.github.com/v3/repos/hooks/#test-a-hook">API documentation</a> for more information.
/// This will trigger the hook with the latest push to the current repository if the hook is subscribed to push events. If the hook
@@ -132,7 +132,7 @@ namespace Octokit.Reactive
/// <summary>
/// This will trigger a ping event to be sent to the hook.
/// </summary>
/// <param name="repositoryId">The repository's ID</param>
/// <param name="repositoryId">The Id of the repository</param>
/// <param name="hookId">The repository's hook id</param>
/// <remarks>See <a href="http://developer.github.com/v3/repos/hooks/#edit-a-hook">API documentation</a> for more information.</remarks>
IObservable<Unit> Ping(int repositoryId, int hookId);
@@ -149,7 +149,7 @@ namespace Octokit.Reactive
/// <summary>
/// Deletes a hook for a repository
/// </summary>
/// <param name="repositoryId">The repository's ID</param>
/// <param name="repositoryId">The Id of the repository</param>
/// <param name="hookId">The repository's hook id</param>
/// <remarks>See <a href="http://developer.github.com/v3/repos/hooks/#delete-a-hook">API documentation</a> for more information.</remarks>
IObservable<Unit> Delete(int repositoryId, int hookId);