mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-20 14:15:12 +00:00
ID -> Id
This commit is contained in:
@@ -20,7 +20,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets all the available assignees (owner + collaborators) to which issues may be assigned.
|
/// Gets all the available assignees (owner + collaborators) to which issues may be assigned.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
IObservable<User> GetAllForRepository(int repositoryId);
|
IObservable<User> GetAllForRepository(int repositoryId);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -34,7 +34,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets all the available assignees (owner + collaborators) to which issues may be assigned.
|
/// Gets all the available assignees (owner + collaborators) to which issues may be assigned.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="options">The options to change API's behaviour.</param>
|
/// <param name="options">The options to change API's behaviour.</param>
|
||||||
IObservable<User> GetAllForRepository(int repositoryId, ApiOptions options);
|
IObservable<User> GetAllForRepository(int repositoryId, ApiOptions options);
|
||||||
|
|
||||||
@@ -49,7 +49,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Checks to see if a user is an assignee for a repository.
|
/// Checks to see if a user is an assignee for a repository.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="assignee">Username of the prospective assignee</param>
|
/// <param name="assignee">Username of the prospective assignee</param>
|
||||||
IObservable<bool> CheckAssignee(int repositoryId, string assignee);
|
IObservable<bool> CheckAssignee(int repositoryId, string assignee);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -89,7 +89,7 @@ namespace Octokit.Reactive
|
|||||||
/// This method requires authentication.
|
/// This method requires authentication.
|
||||||
/// See the <a href="http://developer.github.com/v3/oauth/#get-or-create-an-authorization-for-a-specific-app">API documentation</a> for more information.
|
/// See the <a href="http://developer.github.com/v3/oauth/#get-or-create-an-authorization-for-a-specific-app">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="clientId">Client ID of the OAuth application for the token</param>
|
/// <param name="clientId">Client Id of the OAuth application for the token</param>
|
||||||
/// <param name="clientSecret">The client secret</param>
|
/// <param name="clientSecret">The client secret</param>
|
||||||
/// <param name="newAuthorization">Describes the new authorization to create</param>
|
/// <param name="newAuthorization">Describes the new authorization to create</param>
|
||||||
/// <exception cref="AuthorizationException">
|
/// <exception cref="AuthorizationException">
|
||||||
@@ -113,7 +113,7 @@ namespace Octokit.Reactive
|
|||||||
/// This method requires authentication.
|
/// This method requires authentication.
|
||||||
/// See the <a href="http://developer.github.com/v3/oauth/#get-or-create-an-authorization-for-a-specific-app">API documentation</a> for more information.
|
/// See the <a href="http://developer.github.com/v3/oauth/#get-or-create-an-authorization-for-a-specific-app">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="clientId">Client ID of the OAuth application for the token</param>
|
/// <param name="clientId">Client Id of the OAuth application for the token</param>
|
||||||
/// <param name="clientSecret">The client secret</param>
|
/// <param name="clientSecret">The client secret</param>
|
||||||
/// <param name="twoFactorAuthenticationCode">The two-factor authentication code in response to the current user's previous challenge</param>
|
/// <param name="twoFactorAuthenticationCode">The two-factor authentication code in response to the current user's previous challenge</param>
|
||||||
/// <param name="newAuthorization">Describes the new authorization to create</param>
|
/// <param name="newAuthorization">Describes the new authorization to create</param>
|
||||||
@@ -140,7 +140,7 @@ namespace Octokit.Reactive
|
|||||||
/// See <a href="http://developer.github.com/v3/oauth/#get-or-create-an-authorization-for-a-specific-app">API
|
/// See <a href="http://developer.github.com/v3/oauth/#get-or-create-an-authorization-for-a-specific-app">API
|
||||||
/// documentation</a> for more details.
|
/// documentation</a> for more details.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="clientId">Client ID for the OAuth application that is requesting the token</param>
|
/// <param name="clientId">Client Id for the OAuth application that is requesting the token</param>
|
||||||
/// <param name="clientSecret">The client secret</param>
|
/// <param name="clientSecret">The client secret</param>
|
||||||
/// <param name="newAuthorization">Defines the scopes and metadata for the token</param>
|
/// <param name="newAuthorization">Defines the scopes and metadata for the token</param>
|
||||||
/// <exception cref="AuthorizationException">Thrown when the user does not have permission to make
|
/// <exception cref="AuthorizationException">Thrown when the user does not have permission to make
|
||||||
@@ -162,7 +162,7 @@ namespace Octokit.Reactive
|
|||||||
/// See <a href="http://developer.github.com/v3/oauth/#get-or-create-an-authorization-for-a-specific-app">API
|
/// See <a href="http://developer.github.com/v3/oauth/#get-or-create-an-authorization-for-a-specific-app">API
|
||||||
/// documentation</a> for more details.
|
/// documentation</a> for more details.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="clientId">Client ID for the OAuth application that is requesting the token</param>
|
/// <param name="clientId">Client Id for the OAuth application that is requesting the token</param>
|
||||||
/// <param name="clientSecret">The client secret</param>
|
/// <param name="clientSecret">The client secret</param>
|
||||||
/// <param name="newAuthorization">Defines the scopes and metadata for the token</param>
|
/// <param name="newAuthorization">Defines the scopes and metadata for the token</param>
|
||||||
/// <param name="twoFactorAuthenticationCode">The two-factor authentication code provided by the user</param>
|
/// <param name="twoFactorAuthenticationCode">The two-factor authentication code provided by the user</param>
|
||||||
@@ -184,7 +184,7 @@ namespace Octokit.Reactive
|
|||||||
/// This method requires authentication.
|
/// This method requires authentication.
|
||||||
/// See the <a href="https://developer.github.com/v3/oauth_authorizations/#check-an-authorization">API documentation</a> for more information.
|
/// See the <a href="https://developer.github.com/v3/oauth_authorizations/#check-an-authorization">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="clientId">Client ID of the OAuth application for the token</param>
|
/// <param name="clientId">Client Id of the OAuth application for the token</param>
|
||||||
/// <param name="accessToken">The OAuth token to check</param>
|
/// <param name="accessToken">The OAuth token to check</param>
|
||||||
/// <returns>The valid <see cref="ApplicationAuthorization"/>.</returns>
|
/// <returns>The valid <see cref="ApplicationAuthorization"/>.</returns>
|
||||||
IObservable<ApplicationAuthorization> CheckApplicationAuthentication(string clientId, string accessToken);
|
IObservable<ApplicationAuthorization> CheckApplicationAuthentication(string clientId, string accessToken);
|
||||||
@@ -241,7 +241,7 @@ namespace Octokit.Reactive
|
|||||||
/// See the <a href="http://developer.github.com/v3/oauth/#delete-an-authorization">API
|
/// See the <a href="http://developer.github.com/v3/oauth/#delete-an-authorization">API
|
||||||
/// documentation</a> for more details.
|
/// documentation</a> for more details.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="id">The system-wide ID of the authorization to delete</param>
|
/// <param name="id">The system-wide Id of the authorization to delete</param>
|
||||||
/// <exception cref="AuthorizationException">
|
/// <exception cref="AuthorizationException">
|
||||||
/// Thrown when the current user does not have permission to make the request.
|
/// Thrown when the current user does not have permission to make the request.
|
||||||
/// </exception>
|
/// </exception>
|
||||||
@@ -256,7 +256,7 @@ namespace Octokit.Reactive
|
|||||||
/// See the <a href="http://developer.github.com/v3/oauth/#delete-an-authorization">API
|
/// See the <a href="http://developer.github.com/v3/oauth/#delete-an-authorization">API
|
||||||
/// documentation</a> for more details.
|
/// documentation</a> for more details.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="id">The system-wide ID of the authorization to delete</param>
|
/// <param name="id">The system-wide Id of the authorization to delete</param>
|
||||||
/// <param name="twoFactorAuthenticationCode">Two factor authorization code</param>
|
/// <param name="twoFactorAuthenticationCode">Two factor authorization code</param>
|
||||||
/// <exception cref="AuthorizationException">
|
/// <exception cref="AuthorizationException">
|
||||||
/// Thrown when the current user does not have permission to make the request.
|
/// Thrown when the current user does not have permission to make the request.
|
||||||
|
|||||||
@@ -28,7 +28,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/git/blobs/#get-a-blob
|
/// http://developer.github.com/v3/git/blobs/#get-a-blob
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="reference">The SHA of the blob</param>
|
/// <param name="reference">The SHA of the blob</param>
|
||||||
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get")]
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get")]
|
||||||
IObservable<Blob> Get(int repositoryId, string reference);
|
IObservable<Blob> Get(int repositoryId, string reference);
|
||||||
@@ -50,7 +50,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/git/blobs/#create-a-blob
|
/// http://developer.github.com/v3/git/blobs/#create-a-blob
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="newBlob">The new Blob</param>
|
/// <param name="newBlob">The new Blob</param>
|
||||||
IObservable<BlobReference> Create(int repositoryId, NewBlob newBlob);
|
IObservable<BlobReference> Create(int repositoryId, NewBlob newBlob);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -25,7 +25,7 @@ namespace Octokit.Reactive
|
|||||||
/// Creates a reaction for a specified Commit Comment
|
/// Creates a reaction for a specified Commit Comment
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://developer.github.com/v3/reactions/#create-reaction-for-a-commit-comment</remarks>
|
/// <remarks>https://developer.github.com/v3/reactions/#create-reaction-for-a-commit-comment</remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="number">The comment id</param>
|
/// <param name="number">The comment id</param>
|
||||||
/// <param name="reaction">The reaction to create </param>
|
/// <param name="reaction">The reaction to create </param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
|
|||||||
@@ -25,7 +25,7 @@ namespace Octokit.Reactive
|
|||||||
/// a tag name.
|
/// a tag name.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>Only users with pull access can see this.</remarks>
|
/// <remarks>Only users with pull access can see this.</remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="reference">The reference (SHA, branch name, or tag name) to list commits for</param>
|
/// <param name="reference">The reference (SHA, branch name, or tag name) to list commits for</param>
|
||||||
IObservable<CommitStatus> GetAll(int repositoryId, string reference);
|
IObservable<CommitStatus> GetAll(int repositoryId, string reference);
|
||||||
|
|
||||||
@@ -45,7 +45,7 @@ namespace Octokit.Reactive
|
|||||||
/// a tag name.
|
/// a tag name.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>Only users with pull access can see this.</remarks>
|
/// <remarks>Only users with pull access can see this.</remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="reference">The reference (SHA, branch name, or tag name) to list commits for</param>
|
/// <param name="reference">The reference (SHA, branch name, or tag name) to list commits for</param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
IObservable<CommitStatus> GetAll(int repositoryId, string reference, ApiOptions options);
|
IObservable<CommitStatus> GetAll(int repositoryId, string reference, ApiOptions options);
|
||||||
@@ -65,7 +65,7 @@ namespace Octokit.Reactive
|
|||||||
/// a tag name.
|
/// a tag name.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>Only users with pull access can see this.</remarks>
|
/// <remarks>Only users with pull access can see this.</remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="reference">The reference (SHA, branch name, or tag name) to list commits for</param>
|
/// <param name="reference">The reference (SHA, branch name, or tag name) to list commits for</param>
|
||||||
IObservable<CombinedCommitStatus> GetCombined(int repositoryId, string reference);
|
IObservable<CombinedCommitStatus> GetCombined(int repositoryId, string reference);
|
||||||
|
|
||||||
@@ -81,7 +81,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Creates a commit status for the specified ref.
|
/// Creates a commit status for the specified ref.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="reference">The reference (SHA, branch name, or tag name) to list commits for</param>
|
/// <param name="reference">The reference (SHA, branch name, or tag name) to list commits for</param>
|
||||||
/// <param name="newCommitStatus">The commit status to create</param>
|
/// <param name="newCommitStatus">The commit status to create</param>
|
||||||
IObservable<CommitStatus> Create(int repositoryId, string reference, NewCommitStatus newCommitStatus);
|
IObservable<CommitStatus> Create(int repositoryId, string reference, NewCommitStatus newCommitStatus);
|
||||||
|
|||||||
@@ -30,7 +30,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/git/commits/#get-a-commit
|
/// http://developer.github.com/v3/git/commits/#get-a-commit
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="reference">Tha sha reference of the commit</param>
|
/// <param name="reference">Tha sha reference of the commit</param>
|
||||||
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get",
|
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get",
|
||||||
Justification = "Method makes a network request")]
|
Justification = "Method makes a network request")]
|
||||||
@@ -53,7 +53,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/git/commits/#create-a-commit
|
/// http://developer.github.com/v3/git/commits/#create-a-commit
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="commit">The commit to create</param>
|
/// <param name="commit">The commit to create</param>
|
||||||
IObservable<Commit> Create(int repositoryId, NewCommit commit);
|
IObservable<Commit> Create(int repositoryId, NewCommit commit);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -30,7 +30,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/repos/deployments/#list-deployment-statuses
|
/// http://developer.github.com/v3/repos/deployments/#list-deployment-statuses
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository.</param>
|
/// <param name="repositoryId">The Id of the repository.</param>
|
||||||
/// <param name="deploymentId">The id of the deployment.</param>
|
/// <param name="deploymentId">The id of the deployment.</param>
|
||||||
IObservable<DeploymentStatus> GetAll(int repositoryId, int deploymentId);
|
IObservable<DeploymentStatus> GetAll(int repositoryId, int deploymentId);
|
||||||
|
|
||||||
@@ -54,7 +54,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/repos/deployments/#list-deployment-statuses
|
/// http://developer.github.com/v3/repos/deployments/#list-deployment-statuses
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository.</param>
|
/// <param name="repositoryId">The Id of the repository.</param>
|
||||||
/// <param name="deploymentId">The id of the deployment.</param>
|
/// <param name="deploymentId">The id of the deployment.</param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
IObservable<DeploymentStatus> GetAll(int repositoryId, int deploymentId, ApiOptions options);
|
IObservable<DeploymentStatus> GetAll(int repositoryId, int deploymentId, ApiOptions options);
|
||||||
@@ -79,7 +79,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/repos/deployments/#create-a-deployment-status
|
/// http://developer.github.com/v3/repos/deployments/#create-a-deployment-status
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository.</param>
|
/// <param name="repositoryId">The Id of the repository.</param>
|
||||||
/// <param name="deploymentId">The id of the deployment.</param>
|
/// <param name="deploymentId">The id of the deployment.</param>
|
||||||
/// <param name="newDeploymentStatus">The new deployment status to create.</param>
|
/// <param name="newDeploymentStatus">The new deployment status to create.</param>
|
||||||
IObservable<DeploymentStatus> Create(int repositoryId, int deploymentId, NewDeploymentStatus newDeploymentStatus);
|
IObservable<DeploymentStatus> Create(int repositoryId, int deploymentId, NewDeploymentStatus newDeploymentStatus);
|
||||||
|
|||||||
@@ -29,7 +29,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/repos/deployments/#list-deployments
|
/// http://developer.github.com/v3/repos/deployments/#list-deployments
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
IObservable<Deployment> GetAll(int repositoryId);
|
IObservable<Deployment> GetAll(int repositoryId);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -51,7 +51,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/repos/deployments/#list-deployments
|
/// http://developer.github.com/v3/repos/deployments/#list-deployments
|
||||||
/// </remarks>
|
/// </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>
|
||||||
IObservable<Deployment> GetAll(int repositoryId, ApiOptions options);
|
IObservable<Deployment> GetAll(int repositoryId, ApiOptions options);
|
||||||
|
|
||||||
@@ -74,7 +74,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/repos/deployments/#create-a-deployment
|
/// http://developer.github.com/v3/repos/deployments/#create-a-deployment
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="newDeployment">A <see cref="NewDeployment"/> instance describing the new deployment to create</param>
|
/// <param name="newDeployment">A <see cref="NewDeployment"/> instance describing the new deployment to create</param>
|
||||||
IObservable<Deployment> Create(int repositoryId, NewDeployment newDeployment);
|
IObservable<Deployment> Create(int repositoryId, NewDeployment newDeployment);
|
||||||
|
|
||||||
|
|||||||
@@ -44,7 +44,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/activity/events/#list-issue-events-for-a-repository
|
/// http://developer.github.com/v3/activity/events/#list-issue-events-for-a-repository
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
IObservable<Activity> GetAllForRepository(int repositoryId);
|
IObservable<Activity> GetAllForRepository(int repositoryId);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -64,7 +64,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/activity/events/#list-issue-events-for-a-repository
|
/// http://developer.github.com/v3/activity/events/#list-issue-events-for-a-repository
|
||||||
/// </remarks>
|
/// </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>
|
||||||
IObservable<Activity> GetAllForRepository(int repositoryId, ApiOptions options);
|
IObservable<Activity> GetAllForRepository(int repositoryId, ApiOptions options);
|
||||||
|
|
||||||
@@ -84,7 +84,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/activity/events/#list-issue-events-for-a-repository
|
/// http://developer.github.com/v3/activity/events/#list-issue-events-for-a-repository
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
IObservable<Activity> GetAllIssuesForRepository(int repositoryId);
|
IObservable<Activity> GetAllIssuesForRepository(int repositoryId);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -104,7 +104,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/activity/events/#list-issue-events-for-a-repository
|
/// http://developer.github.com/v3/activity/events/#list-issue-events-for-a-repository
|
||||||
/// </remarks>
|
/// </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>
|
||||||
IObservable<Activity> GetAllIssuesForRepository(int repositoryId, ApiOptions options);
|
IObservable<Activity> GetAllIssuesForRepository(int repositoryId, ApiOptions options);
|
||||||
|
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ namespace Octokit.Reactive
|
|||||||
/// Creates a reaction for a specified Issue Comment
|
/// Creates a reaction for a specified Issue Comment
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://developer.github.com/v3/reactions/#create-reaction-for-an-issue-comment</remarks>
|
/// <remarks>https://developer.github.com/v3/reactions/#create-reaction-for-an-issue-comment</remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="number">The comment id</param>
|
/// <param name="number">The comment id</param>
|
||||||
/// <param name="reaction">The reaction to create </param>
|
/// <param name="reaction">The reaction to create </param>
|
||||||
IObservable<Reaction> Create(int repositoryId, int number, NewReaction reaction);
|
IObservable<Reaction> Create(int repositoryId, int number, NewReaction reaction);
|
||||||
@@ -42,7 +42,7 @@ namespace Octokit.Reactive
|
|||||||
/// List reactions for a specified Issue Comment
|
/// List reactions for a specified Issue Comment
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-an-issue-comment</remarks>
|
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-an-issue-comment</remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="number">The comment id</param>
|
/// <param name="number">The comment id</param>
|
||||||
IObservable<Reaction> GetAll(int repositoryId, int number);
|
IObservable<Reaction> GetAll(int repositoryId, int number);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -27,7 +27,7 @@ namespace Octokit.Reactive
|
|||||||
/// Gets a single Issue Comment by id.
|
/// Gets a single Issue Comment by id.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>http://developer.github.com/v3/issues/comments/#get-a-single-comment</remarks>
|
/// <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>
|
/// <param name="id">The issue comment id</param>
|
||||||
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get",
|
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get",
|
||||||
Justification = "Method makes a network request")]
|
Justification = "Method makes a network request")]
|
||||||
@@ -45,7 +45,7 @@ namespace Octokit.Reactive
|
|||||||
/// Gets Issue Comments for a repository.
|
/// Gets Issue Comments for a repository.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>http://developer.github.com/v3/issues/comments/#list-comments-in-a-repository</remarks>
|
/// <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>
|
||||||
IObservable<IssueComment> GetAllForRepository(int repositoryId);
|
IObservable<IssueComment> GetAllForRepository(int repositoryId);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -61,7 +61,7 @@ namespace Octokit.Reactive
|
|||||||
/// Gets Issue Comments for a repository.
|
/// Gets Issue Comments for a repository.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>http://developer.github.com/v3/issues/comments/#list-comments-in-a-repository</remarks>
|
/// <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>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
IObservable<IssueComment> GetAllForRepository(int repositoryId, ApiOptions options);
|
IObservable<IssueComment> GetAllForRepository(int repositoryId, ApiOptions options);
|
||||||
|
|
||||||
@@ -78,7 +78,7 @@ namespace Octokit.Reactive
|
|||||||
/// Gets Issue Comments for a specified Issue.
|
/// Gets Issue Comments for a specified Issue.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>http://developer.github.com/v3/issues/comments/#list-comments-on-an-issue</remarks>
|
/// <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="number">The issue number</param>
|
||||||
IObservable<IssueComment> GetAllForIssue(int repositoryId, int number);
|
IObservable<IssueComment> GetAllForIssue(int repositoryId, int number);
|
||||||
|
|
||||||
@@ -96,7 +96,7 @@ namespace Octokit.Reactive
|
|||||||
/// Gets Issue Comments for a specified Issue.
|
/// Gets Issue Comments for a specified Issue.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>http://developer.github.com/v3/issues/comments/#list-comments-on-an-issue</remarks>
|
/// <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="number">The issue number</param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
IObservable<IssueComment> GetAllForIssue(int repositoryId, int number, ApiOptions options);
|
IObservable<IssueComment> GetAllForIssue(int repositoryId, int number, ApiOptions options);
|
||||||
@@ -115,7 +115,7 @@ namespace Octokit.Reactive
|
|||||||
/// Creates a new Issue Comment for a specified Issue.
|
/// Creates a new Issue Comment for a specified Issue.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>http://developer.github.com/v3/issues/comments/#create-a-comment</remarks>
|
/// <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="number">The number of the issue</param>
|
||||||
/// <param name="newComment">The text of the new comment</param>
|
/// <param name="newComment">The text of the new comment</param>
|
||||||
IObservable<IssueComment> Create(int repositoryId, int number, string newComment);
|
IObservable<IssueComment> Create(int repositoryId, int number, string newComment);
|
||||||
@@ -134,7 +134,7 @@ namespace Octokit.Reactive
|
|||||||
/// Updates a specified Issue Comment.
|
/// Updates a specified Issue Comment.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>http://developer.github.com/v3/issues/comments/#edit-a-comment</remarks>
|
/// <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="id">The comment id</param>
|
||||||
/// <param name="commentUpdate">The modified comment</param>
|
/// <param name="commentUpdate">The modified comment</param>
|
||||||
IObservable<IssueComment> Update(int repositoryId, int id, string commentUpdate);
|
IObservable<IssueComment> Update(int repositoryId, int id, string commentUpdate);
|
||||||
@@ -152,7 +152,7 @@ namespace Octokit.Reactive
|
|||||||
/// Deletes the specified Issue Comment
|
/// Deletes the specified Issue Comment
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>http://developer.github.com/v3/issues/comments/#delete-a-comment</remarks>
|
/// <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>
|
/// <param name="id">The comment id</param>
|
||||||
IObservable<Unit> Delete(int repositoryId, int id);
|
IObservable<Unit> Delete(int repositoryId, int id);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ namespace Octokit.Reactive
|
|||||||
/// List reactions for a specified Issue.
|
/// List reactions for a specified Issue.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-an-issue</remarks>
|
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-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 id</param>
|
/// <param name="number">The issue id</param>
|
||||||
IObservable<Reaction> GetAll(int repositoryId, int number);
|
IObservable<Reaction> GetAll(int repositoryId, int number);
|
||||||
|
|
||||||
@@ -41,7 +41,7 @@ namespace Octokit.Reactive
|
|||||||
/// Creates a reaction for a specified Issue.
|
/// Creates a reaction for a specified Issue.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://developer.github.com/v3/reactions/#create-reaction-for-an-issue</remarks>
|
/// <remarks>https://developer.github.com/v3/reactions/#create-reaction-for-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 id</param>
|
/// <param name="number">The issue id</param>
|
||||||
/// <param name="reaction">The reaction to create </param>
|
/// <param name="reaction">The reaction to create </param>
|
||||||
IObservable<Reaction> Create(int repositoryId, int number, NewReaction reaction);
|
IObservable<Reaction> Create(int repositoryId, int number, NewReaction reaction);
|
||||||
|
|||||||
@@ -58,7 +58,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/issues/#get-a-single-issue
|
/// http://developer.github.com/v3/issues/#get-a-single-issue
|
||||||
/// </remarks>
|
/// </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="number">The issue number</param>
|
||||||
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get",
|
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get",
|
||||||
Justification = "Method makes a network request")]
|
Justification = "Method makes a network request")]
|
||||||
@@ -202,7 +202,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/issues/#list-issues-for-a-repository
|
/// http://developer.github.com/v3/issues/#list-issues-for-a-repository
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
IObservable<Issue> GetAllForRepository(int repositoryId);
|
IObservable<Issue> GetAllForRepository(int repositoryId);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -222,7 +222,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/issues/#list-issues-for-a-repository
|
/// http://developer.github.com/v3/issues/#list-issues-for-a-repository
|
||||||
/// </remarks>
|
/// </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>
|
||||||
IObservable<Issue> GetAllForRepository(int repositoryId, ApiOptions options);
|
IObservable<Issue> GetAllForRepository(int repositoryId, ApiOptions options);
|
||||||
|
|
||||||
@@ -243,7 +243,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/issues/#list-issues-for-a-repository
|
/// http://developer.github.com/v3/issues/#list-issues-for-a-repository
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="request">Used to filter and sort the list of issues returned</param>
|
/// <param name="request">Used to filter and sort the list of issues returned</param>
|
||||||
IObservable<Issue> GetAllForRepository(int repositoryId, RepositoryIssueRequest request);
|
IObservable<Issue> GetAllForRepository(int repositoryId, RepositoryIssueRequest request);
|
||||||
|
|
||||||
@@ -265,7 +265,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/issues/#list-issues-for-a-repository
|
/// http://developer.github.com/v3/issues/#list-issues-for-a-repository
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="request">Used to filter and sort the list of issues returned</param>
|
/// <param name="request">Used to filter and sort the list of issues returned</param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
IObservable<Issue> GetAllForRepository(int repositoryId, RepositoryIssueRequest request, ApiOptions options);
|
IObservable<Issue> GetAllForRepository(int repositoryId, RepositoryIssueRequest request, ApiOptions options);
|
||||||
@@ -285,7 +285,7 @@ namespace Octokit.Reactive
|
|||||||
/// issue.
|
/// issue.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>http://developer.github.com/v3/issues/#create-an-issue</remarks>
|
/// <remarks>http://developer.github.com/v3/issues/#create-an-issue</remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="newIssue">A <see cref="NewIssue"/> instance describing the new issue to create</param>
|
/// <param name="newIssue">A <see cref="NewIssue"/> instance describing the new issue to create</param>
|
||||||
IObservable<Issue> Create(int repositoryId, NewIssue newIssue);
|
IObservable<Issue> Create(int repositoryId, NewIssue newIssue);
|
||||||
|
|
||||||
@@ -306,7 +306,7 @@ namespace Octokit.Reactive
|
|||||||
/// issue.
|
/// issue.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>http://developer.github.com/v3/issues/#create-an-issue</remarks>
|
/// <remarks>http://developer.github.com/v3/issues/#create-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="number">The issue number</param>
|
||||||
/// <param name="issueUpdate">An <see cref="IssueUpdate"/> instance describing the changes to make to the issue
|
/// <param name="issueUpdate">An <see cref="IssueUpdate"/> instance describing the changes to make to the issue
|
||||||
/// </param>
|
/// </param>
|
||||||
@@ -325,7 +325,7 @@ namespace Octokit.Reactive
|
|||||||
/// Locks an issue for the specified repository. Issue owners and users with push access can lock an issue.
|
/// Locks an issue for the specified repository. Issue owners and users with push access can lock an issue.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://developer.github.com/v3/issues/#lock-an-issue</remarks>
|
/// <remarks>https://developer.github.com/v3/issues/#lock-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="number">The issue number</param>
|
||||||
IObservable<Unit> Lock(int repositoryId, int number);
|
IObservable<Unit> Lock(int repositoryId, int number);
|
||||||
|
|
||||||
@@ -342,7 +342,7 @@ namespace Octokit.Reactive
|
|||||||
/// Unlocks an issue for the specified repository. Issue owners and users with push access can unlock an issue.
|
/// Unlocks an issue for the specified repository. Issue owners and users with push access can unlock an issue.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://developer.github.com/v3/issues/#unlock-an-issue</remarks>
|
/// <remarks>https://developer.github.com/v3/issues/#unlock-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="number">The issue number</param>
|
||||||
IObservable<Unit> Unlock(int repositoryId, int number);
|
IObservable<Unit> Unlock(int repositoryId, int number);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -28,7 +28,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/issues/events/#list-events-for-an-issue
|
/// http://developer.github.com/v3/issues/events/#list-events-for-an-issue
|
||||||
/// </remarks>
|
/// </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="number">The issue number</param>
|
||||||
IObservable<EventInfo> GetAllForIssue(int repositoryId, int number);
|
IObservable<EventInfo> GetAllForIssue(int repositoryId, int number);
|
||||||
|
|
||||||
@@ -50,7 +50,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/issues/events/#list-events-for-an-issue
|
/// http://developer.github.com/v3/issues/events/#list-events-for-an-issue
|
||||||
/// </remarks>
|
/// </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="number">The issue number</param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
IObservable<EventInfo> GetAllForIssue(int repositoryId, int number, ApiOptions options);
|
IObservable<EventInfo> GetAllForIssue(int repositoryId, int number, ApiOptions options);
|
||||||
@@ -71,7 +71,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/issues/events/#list-events-for-a-repository
|
/// http://developer.github.com/v3/issues/events/#list-events-for-a-repository
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
IObservable<IssueEvent> GetAllForRepository(int repositoryId);
|
IObservable<IssueEvent> GetAllForRepository(int repositoryId);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -91,7 +91,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/issues/events/#list-events-for-a-repository
|
/// http://developer.github.com/v3/issues/events/#list-events-for-a-repository
|
||||||
/// </remarks>
|
/// </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>
|
||||||
IObservable<IssueEvent> GetAllForRepository(int repositoryId, ApiOptions options);
|
IObservable<IssueEvent> GetAllForRepository(int repositoryId, ApiOptions options);
|
||||||
|
|
||||||
@@ -114,7 +114,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/issues/events/#get-a-single-event
|
/// http://developer.github.com/v3/issues/events/#get-a-single-event
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="number">The event id</param>
|
/// <param name="number">The event id</param>
|
||||||
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get",
|
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get",
|
||||||
Justification = "Method makes a network request")]
|
Justification = "Method makes a network request")]
|
||||||
|
|||||||
@@ -29,7 +29,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/issues/labels/#list-labels-on-an-issue">API documentation</a> for more information.
|
/// See the <a href="http://developer.github.com/v3/issues/labels/#list-labels-on-an-issue">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </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="number">The number of the issue</param>
|
||||||
IObservable<Label> GetAllForIssue(int repositoryId, int number);
|
IObservable<Label> GetAllForIssue(int repositoryId, int number);
|
||||||
|
|
||||||
@@ -51,7 +51,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/issues/labels/#list-labels-on-an-issue">API documentation</a> for more information.
|
/// See the <a href="http://developer.github.com/v3/issues/labels/#list-labels-on-an-issue">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </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="number">The number of the issue</param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
IObservable<Label> GetAllForIssue(int repositoryId, int number, ApiOptions options);
|
IObservable<Label> GetAllForIssue(int repositoryId, int number, ApiOptions options);
|
||||||
@@ -72,7 +72,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/issues/labels/#list-all-labels-for-this-repository">API documentation</a> for more information.
|
/// See the <a href="http://developer.github.com/v3/issues/labels/#list-all-labels-for-this-repository">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
IObservable<Label> GetAllForRepository(int repositoryId);
|
IObservable<Label> GetAllForRepository(int repositoryId);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -92,7 +92,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/issues/labels/#list-all-labels-for-this-repository">API documentation</a> for more information.
|
/// See the <a href="http://developer.github.com/v3/issues/labels/#list-all-labels-for-this-repository">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </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>
|
||||||
IObservable<Label> GetAllForRepository(int repositoryId, ApiOptions options);
|
IObservable<Label> GetAllForRepository(int repositoryId, ApiOptions options);
|
||||||
|
|
||||||
@@ -113,7 +113,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/issues/labels/#get-labels-for-every-issue-in-a-milestone">API documentation</a> for more information.
|
/// See the <a href="http://developer.github.com/v3/issues/labels/#get-labels-for-every-issue-in-a-milestone">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </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 milestone</param>
|
/// <param name="number">The number of the milestone</param>
|
||||||
IObservable<Label> GetAllForMilestone(int repositoryId, int number);
|
IObservable<Label> GetAllForMilestone(int repositoryId, int number);
|
||||||
|
|
||||||
@@ -135,7 +135,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/issues/labels/#get-labels-for-every-issue-in-a-milestone">API documentation</a> for more information.
|
/// See the <a href="http://developer.github.com/v3/issues/labels/#get-labels-for-every-issue-in-a-milestone">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </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 milestone</param>
|
/// <param name="number">The number of the milestone</param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
IObservable<Label> GetAllForMilestone(int repositoryId, int number, ApiOptions options);
|
IObservable<Label> GetAllForMilestone(int repositoryId, int number, ApiOptions options);
|
||||||
@@ -159,7 +159,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/issues/labels/#get-a-single-label">API documentation</a> for more information.
|
/// See the <a href="http://developer.github.com/v3/issues/labels/#get-a-single-label">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="labelName">The name of the label</param>
|
/// <param name="labelName">The name of the label</param>
|
||||||
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get",
|
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get",
|
||||||
Justification = "Method makes a network request")]
|
Justification = "Method makes a network request")]
|
||||||
@@ -182,7 +182,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/issues/labels/#delete-a-label">API documentation</a> for more information.
|
/// See the <a href="http://developer.github.com/v3/issues/labels/#delete-a-label">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="labelName">The name of the label</param>
|
/// <param name="labelName">The name of the label</param>
|
||||||
IObservable<Unit> Delete(int repositoryId, string labelName);
|
IObservable<Unit> Delete(int repositoryId, string labelName);
|
||||||
|
|
||||||
@@ -203,7 +203,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/issues/labels/#create-a-label">API documentation</a> for more information.
|
/// See the <a href="http://developer.github.com/v3/issues/labels/#create-a-label">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="newLabel">The data for the label to be created</param>
|
/// <param name="newLabel">The data for the label to be created</param>
|
||||||
IObservable<Label> Create(int repositoryId, NewLabel newLabel);
|
IObservable<Label> Create(int repositoryId, NewLabel newLabel);
|
||||||
|
|
||||||
@@ -225,7 +225,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/issues/labels/#update-a-label">API documentation</a> for more information.
|
/// See the <a href="http://developer.github.com/v3/issues/labels/#update-a-label">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="labelName">The name of the label</param>
|
/// <param name="labelName">The name of the label</param>
|
||||||
/// <param name="labelUpdate">The data for the label to be updated</param>
|
/// <param name="labelUpdate">The data for the label to be updated</param>
|
||||||
IObservable<Label> Update(int repositoryId, string labelName, LabelUpdate labelUpdate);
|
IObservable<Label> Update(int repositoryId, string labelName, LabelUpdate labelUpdate);
|
||||||
@@ -248,7 +248,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/issues/labels/#add-labels-to-an-issue">API documentation</a> for more information.
|
/// See the <a href="http://developer.github.com/v3/issues/labels/#add-labels-to-an-issue">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </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="number">The number of the issue</param>
|
||||||
/// <param name="labels">The names of the labels to add</param>
|
/// <param name="labels">The names of the labels to add</param>
|
||||||
IObservable<Label> AddToIssue(int repositoryId, int number, string[] labels);
|
IObservable<Label> AddToIssue(int repositoryId, int number, string[] labels);
|
||||||
@@ -271,7 +271,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/issues/labels/#remove-a-label-from-an-issue">API documentation</a> for more information.
|
/// See the <a href="http://developer.github.com/v3/issues/labels/#remove-a-label-from-an-issue">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </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="number">The number of the issue</param>
|
||||||
/// <param name="labelName">The name of the label to remove</param>
|
/// <param name="labelName">The name of the label to remove</param>
|
||||||
IObservable<Unit> RemoveFromIssue(int repositoryId, int number, string labelName);
|
IObservable<Unit> RemoveFromIssue(int repositoryId, int number, string labelName);
|
||||||
@@ -294,7 +294,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/issues/labels/#replace-all-labels-for-an-issue">API documentation</a> for more information.
|
/// See the <a href="http://developer.github.com/v3/issues/labels/#replace-all-labels-for-an-issue">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </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="number">The number of the issue</param>
|
||||||
/// <param name="labels">The names of the labels to set</param>
|
/// <param name="labels">The names of the labels to set</param>
|
||||||
IObservable<Label> ReplaceAllForIssue(int repositoryId, int number, string[] labels);
|
IObservable<Label> ReplaceAllForIssue(int repositoryId, int number, string[] labels);
|
||||||
@@ -316,7 +316,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/issues/labels/#remove-all-labels-from-an-issue">API documentation</a> for more information.
|
/// See the <a href="http://developer.github.com/v3/issues/labels/#remove-all-labels-from-an-issue">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </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="number">The number of the issue</param>
|
||||||
IObservable<Unit> RemoveAllFromIssue(int repositoryId, int number);
|
IObservable<Unit> RemoveAllFromIssue(int repositoryId, int number);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -28,7 +28,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/repos/merging/#perform-a-merge
|
/// http://developer.github.com/v3/repos/merging/#perform-a-merge
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="merge">The merge to create</param>
|
/// <param name="merge">The merge to create</param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
IObservable<Merge> Create(int repositoryId, NewMerge merge);
|
IObservable<Merge> Create(int repositoryId, NewMerge merge);
|
||||||
|
|||||||
@@ -46,7 +46,7 @@ namespace Octokit.Reactive
|
|||||||
/// https://developer.github.com/v3/migration/migrations/#get-the-status-of-a-migration
|
/// https://developer.github.com/v3/migration/migrations/#get-the-status-of-a-migration
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="org">The organization which is migrating.</param>
|
/// <param name="org">The organization which is migrating.</param>
|
||||||
/// <param name="id">Migration ID of the organization.</param>
|
/// <param name="id">Migration Id of the organization.</param>
|
||||||
/// <returns>A <see cref="Migration"/> object representing the state of migration.</returns>
|
/// <returns>A <see cref="Migration"/> object representing the state of migration.</returns>
|
||||||
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get")]
|
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get")]
|
||||||
IObservable<Migration> Get(
|
IObservable<Migration> Get(
|
||||||
@@ -60,7 +60,7 @@ namespace Octokit.Reactive
|
|||||||
/// https://developer.github.com/v3/migration/migrations/#download-a-migration-archive
|
/// https://developer.github.com/v3/migration/migrations/#download-a-migration-archive
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="org">The organization of which the migration was.</param>
|
/// <param name="org">The organization of which the migration was.</param>
|
||||||
/// <param name="id">The ID of the migration.</param>
|
/// <param name="id">The Id of the migration.</param>
|
||||||
/// <returns>The binary contents of the archive as a byte array.</returns>
|
/// <returns>The binary contents of the archive as a byte array.</returns>
|
||||||
IObservable<byte[]> GetArchive(
|
IObservable<byte[]> GetArchive(
|
||||||
string org,
|
string org,
|
||||||
@@ -73,7 +73,7 @@ namespace Octokit.Reactive
|
|||||||
/// https://developer.github.com/v3/migration/migrations/#delete-a-migration-archive
|
/// https://developer.github.com/v3/migration/migrations/#delete-a-migration-archive
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="org">The organization of which the migration was.</param>
|
/// <param name="org">The organization of which the migration was.</param>
|
||||||
/// <param name="id">The ID of the migration.</param>
|
/// <param name="id">The Id of the migration.</param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
IObservable<Unit> DeleteArchive(
|
IObservable<Unit> DeleteArchive(
|
||||||
string org,
|
string org,
|
||||||
@@ -86,7 +86,7 @@ namespace Octokit.Reactive
|
|||||||
/// https://developer.github.com/v3/migration/migrations/#unlock-a-repository
|
/// https://developer.github.com/v3/migration/migrations/#unlock-a-repository
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="org">The organization of which the migration was.</param>
|
/// <param name="org">The organization of which the migration was.</param>
|
||||||
/// <param name="id">The ID of the migration.</param>
|
/// <param name="id">The Id of the migration.</param>
|
||||||
/// <param name="repo">The repo to unlock.</param>
|
/// <param name="repo">The repo to unlock.</param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
IObservable<Unit> UnlockRepository(
|
IObservable<Unit> UnlockRepository(
|
||||||
|
|||||||
@@ -51,7 +51,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/issues/milestones/#list-milestones-for-a-repository
|
/// http://developer.github.com/v3/issues/milestones/#list-milestones-for-a-repository
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
IObservable<Milestone> GetAllForRepository(int repositoryId);
|
IObservable<Milestone> GetAllForRepository(int repositoryId);
|
||||||
|
|
||||||
@@ -73,7 +73,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/issues/milestones/#list-milestones-for-a-repository
|
/// http://developer.github.com/v3/issues/milestones/#list-milestones-for-a-repository
|
||||||
/// </remarks>
|
/// </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></returns>
|
/// <returns></returns>
|
||||||
IObservable<Milestone> GetAllForRepository(int repositoryId, ApiOptions options);
|
IObservable<Milestone> GetAllForRepository(int repositoryId, ApiOptions options);
|
||||||
@@ -96,7 +96,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/issues/milestones/#list-milestones-for-a-repository
|
/// http://developer.github.com/v3/issues/milestones/#list-milestones-for-a-repository
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="request">Used to filter and sort the list of Milestones returned</param>
|
/// <param name="request">Used to filter and sort the list of Milestones returned</param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
IObservable<Milestone> GetAllForRepository(int repositoryId, MilestoneRequest request);
|
IObservable<Milestone> GetAllForRepository(int repositoryId, MilestoneRequest request);
|
||||||
@@ -120,7 +120,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/issues/milestones/#list-milestones-for-a-repository
|
/// http://developer.github.com/v3/issues/milestones/#list-milestones-for-a-repository
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="request">Used to filter and sort the list of Milestones returned</param>
|
/// <param name="request">Used to filter and sort the list of Milestones returned</param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
@@ -142,7 +142,7 @@ namespace Octokit.Reactive
|
|||||||
/// Milestone.
|
/// Milestone.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>http://developer.github.com/v3/issues/milestones/#create-a-milestone</remarks>
|
/// <remarks>http://developer.github.com/v3/issues/milestones/#create-a-milestone</remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="newMilestone">A <see cref="NewMilestone"/> instance describing the new Milestone to create</param>
|
/// <param name="newMilestone">A <see cref="NewMilestone"/> instance describing the new Milestone to create</param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
IObservable<Milestone> Create(int repositoryId, NewMilestone newMilestone);
|
IObservable<Milestone> Create(int repositoryId, NewMilestone newMilestone);
|
||||||
@@ -165,7 +165,7 @@ namespace Octokit.Reactive
|
|||||||
/// Milestone.
|
/// Milestone.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>http://developer.github.com/v3/issues/milestones/#update-a-milestone</remarks>
|
/// <remarks>http://developer.github.com/v3/issues/milestones/#update-a-milestone</remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="number">The Milestone number</param>
|
/// <param name="number">The Milestone number</param>
|
||||||
/// <param name="milestoneUpdate">An <see cref="MilestoneUpdate"/> instance describing the changes to make to the Milestone
|
/// <param name="milestoneUpdate">An <see cref="MilestoneUpdate"/> instance describing the changes to make to the Milestone
|
||||||
/// </param>
|
/// </param>
|
||||||
@@ -188,7 +188,7 @@ namespace Octokit.Reactive
|
|||||||
/// Milestone.
|
/// Milestone.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>http://developer.github.com/v3/issues/milestones/#delete-a-milestone</remarks>
|
/// <remarks>http://developer.github.com/v3/issues/milestones/#delete-a-milestone</remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="number">The milestone number</param>
|
/// <param name="number">The milestone number</param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
IObservable<Unit> Delete(int repositoryId, int number);
|
IObservable<Unit> Delete(int repositoryId, int number);
|
||||||
|
|||||||
@@ -38,7 +38,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Retrieves all of the <see cref="Notification"/>s for the current user specific to the specified repository.
|
/// Retrieves all of the <see cref="Notification"/>s for the current user specific to the specified repository.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository.</param>
|
/// <param name="repositoryId">The Id of the repository.</param>
|
||||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated.</exception>
|
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated.</exception>
|
||||||
IObservable<Notification> GetAllForRepository(int repositoryId);
|
IObservable<Notification> GetAllForRepository(int repositoryId);
|
||||||
|
|
||||||
@@ -54,7 +54,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Retrieves all of the <see cref="Notification"/>s for the current user specific to the specified repository.
|
/// Retrieves all of the <see cref="Notification"/>s for the current user specific to the specified repository.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <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>
|
||||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated.</exception>
|
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated.</exception>
|
||||||
IObservable<Notification> GetAllForRepository(int repositoryId, ApiOptions options);
|
IObservable<Notification> GetAllForRepository(int repositoryId, ApiOptions options);
|
||||||
@@ -88,7 +88,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Retrieves all of the <see cref="Notification"/>s for the current user specific to the specified repository.
|
/// Retrieves all of the <see cref="Notification"/>s for the current user specific to the specified repository.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository.</param>
|
/// <param name="repositoryId">The Id of the repository.</param>
|
||||||
/// <param name="request">Specifies the parameters to filter notifications by</param>
|
/// <param name="request">Specifies the parameters to filter notifications by</param>
|
||||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated.</exception>
|
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated.</exception>
|
||||||
IObservable<Notification> GetAllForRepository(int repositoryId, NotificationsRequest request);
|
IObservable<Notification> GetAllForRepository(int repositoryId, NotificationsRequest request);
|
||||||
@@ -106,7 +106,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Retrieves all of the <see cref="Notification"/>s for the current user specific to the specified repository.
|
/// Retrieves all of the <see cref="Notification"/>s for the current user specific to the specified repository.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository.</param>
|
/// <param name="repositoryId">The Id of the repository.</param>
|
||||||
/// <param name="request">Specifies the parameters to filter notifications by</param>
|
/// <param name="request">Specifies the parameters to filter notifications by</param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated.</exception>
|
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated.</exception>
|
||||||
@@ -136,7 +136,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Marks the notifications for a given repository as read.
|
/// Marks the notifications for a given repository as read.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <remarks>http://developer.github.com/v3/activity/notifications/#mark-notifications-as-read-in-a-repository</remarks>
|
/// <remarks>http://developer.github.com/v3/activity/notifications/#mark-notifications-as-read-in-a-repository</remarks>
|
||||||
IObservable<Unit> MarkAsReadForRepository(int repositoryId);
|
IObservable<Unit> MarkAsReadForRepository(int repositoryId);
|
||||||
|
|
||||||
@@ -152,7 +152,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Marks the notifications for a given repository as read.
|
/// Marks the notifications for a given repository as read.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="markAsReadRequest">The <see cref="MarkAsReadRequest"/> parameter which specifies which notifications to mark.</param>
|
/// <param name="markAsReadRequest">The <see cref="MarkAsReadRequest"/> parameter which specifies which notifications to mark.</param>
|
||||||
/// <remarks>http://developer.github.com/v3/activity/notifications/#mark-notifications-as-read-in-a-repository</remarks>
|
/// <remarks>http://developer.github.com/v3/activity/notifications/#mark-notifications-as-read-in-a-repository</remarks>
|
||||||
IObservable<Unit> MarkAsReadForRepository(int repositoryId, MarkAsReadRequest markAsReadRequest);
|
IObservable<Unit> MarkAsReadForRepository(int repositoryId, MarkAsReadRequest markAsReadRequest);
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ namespace Octokit.Reactive
|
|||||||
/// Get all reactions for a specified Pull Request Review Comment.
|
/// Get all reactions for a specified Pull Request Review Comment.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-a-pull-request-review-comment</remarks>
|
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-a-pull-request-review-comment</remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="number">The comment id</param>
|
/// <param name="number">The comment id</param>
|
||||||
IObservable<Reaction> GetAll(int repositoryId, int number);
|
IObservable<Reaction> GetAll(int repositoryId, int number);
|
||||||
|
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ namespace Octokit.Reactive
|
|||||||
/// Gets review comments for a specified pull request.
|
/// Gets review comments for a specified pull request.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <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>
|
||||||
IObservable<PullRequestReviewComment> GetAll(int repositoryId, int number);
|
IObservable<PullRequestReviewComment> GetAll(int repositoryId, int number);
|
||||||
|
|
||||||
@@ -42,7 +42,7 @@ namespace Octokit.Reactive
|
|||||||
/// Gets review comments for a specified pull request.
|
/// Gets review comments for a specified pull request.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <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>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
IObservable<PullRequestReviewComment> GetAll(int repositoryId, int number, ApiOptions options);
|
IObservable<PullRequestReviewComment> GetAll(int repositoryId, int number, ApiOptions options);
|
||||||
@@ -59,7 +59,7 @@ namespace Octokit.Reactive
|
|||||||
/// Gets a list of the pull request review comments in a specified repository.
|
/// Gets a list of the pull request review comments in a specified repository.
|
||||||
/// </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>
|
||||||
IObservable<PullRequestReviewComment> GetAllForRepository(int repositoryId);
|
IObservable<PullRequestReviewComment> GetAllForRepository(int repositoryId);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -75,7 +75,7 @@ namespace Octokit.Reactive
|
|||||||
/// Gets a list of the pull request review comments in a specified repository.
|
/// Gets a list of the pull request review comments in a specified repository.
|
||||||
/// </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>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
IObservable<PullRequestReviewComment> GetAllForRepository(int repositoryId, ApiOptions options);
|
IObservable<PullRequestReviewComment> GetAllForRepository(int repositoryId, ApiOptions options);
|
||||||
|
|
||||||
@@ -92,7 +92,7 @@ namespace Octokit.Reactive
|
|||||||
/// Gets a list of the pull request review comments in a specified repository.
|
/// Gets a list of the pull request review comments in a specified repository.
|
||||||
/// </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>
|
||||||
/// <param name="request">The sorting <see cref="PullRequestReviewCommentRequest">parameters</see></param>
|
/// <param name="request">The sorting <see cref="PullRequestReviewCommentRequest">parameters</see></param>
|
||||||
IObservable<PullRequestReviewComment> GetAllForRepository(int repositoryId, PullRequestReviewCommentRequest request);
|
IObservable<PullRequestReviewComment> GetAllForRepository(int repositoryId, PullRequestReviewCommentRequest request);
|
||||||
|
|
||||||
@@ -110,7 +110,7 @@ namespace Octokit.Reactive
|
|||||||
/// Gets a list of the pull request review comments in a specified repository.
|
/// Gets a list of the pull request review comments in a specified repository.
|
||||||
/// </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>
|
||||||
/// <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>
|
||||||
IObservable<PullRequestReviewComment> GetAllForRepository(int repositoryId, PullRequestReviewCommentRequest request, ApiOptions options);
|
IObservable<PullRequestReviewComment> GetAllForRepository(int repositoryId, PullRequestReviewCommentRequest request, ApiOptions options);
|
||||||
@@ -128,7 +128,7 @@ namespace Octokit.Reactive
|
|||||||
/// Gets a single pull request review comment by number.
|
/// Gets a single pull request review comment by number.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <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>
|
||||||
IObservable<PullRequestReviewComment> GetComment(int repositoryId, int number);
|
IObservable<PullRequestReviewComment> GetComment(int repositoryId, int number);
|
||||||
|
|
||||||
@@ -146,7 +146,7 @@ namespace Octokit.Reactive
|
|||||||
/// Creates a comment on a pull request review.
|
/// Creates a comment on a pull request review.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>http://developer.github.com/v3/pulls/comments/#create-a-comment</remarks>
|
/// <remarks>http://developer.github.com/v3/pulls/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 Pull Request number</param>
|
/// <param name="number">The Pull Request number</param>
|
||||||
/// <param name="comment">The comment</param>
|
/// <param name="comment">The comment</param>
|
||||||
IObservable<PullRequestReviewComment> Create(int repositoryId, int number, PullRequestReviewCommentCreate comment);
|
IObservable<PullRequestReviewComment> Create(int repositoryId, int number, PullRequestReviewCommentCreate comment);
|
||||||
@@ -165,7 +165,7 @@ namespace Octokit.Reactive
|
|||||||
/// Creates a comment on a pull request review as a reply to another comment.
|
/// Creates a comment on a pull request review as a reply to another comment.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>http://developer.github.com/v3/pulls/comments/#create-a-comment</remarks>
|
/// <remarks>http://developer.github.com/v3/pulls/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 pull request number</param>
|
/// <param name="number">The pull request number</param>
|
||||||
/// <param name="comment">The comment</param>
|
/// <param name="comment">The comment</param>
|
||||||
IObservable<PullRequestReviewComment> CreateReply(int repositoryId, int number, PullRequestReviewCommentReplyCreate comment);
|
IObservable<PullRequestReviewComment> CreateReply(int repositoryId, int number, PullRequestReviewCommentReplyCreate comment);
|
||||||
@@ -184,7 +184,7 @@ namespace Octokit.Reactive
|
|||||||
/// Edits a comment on a pull request review.
|
/// Edits a comment on a pull request review.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>http://developer.github.com/v3/pulls/comments/#edit-a-comment</remarks>
|
/// <remarks>http://developer.github.com/v3/pulls/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="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>
|
||||||
IObservable<PullRequestReviewComment> Edit(int repositoryId, int number, PullRequestReviewCommentEdit comment);
|
IObservable<PullRequestReviewComment> Edit(int repositoryId, int number, PullRequestReviewCommentEdit comment);
|
||||||
@@ -202,7 +202,7 @@ namespace Octokit.Reactive
|
|||||||
/// Deletes a comment on a pull request review.
|
/// Deletes a comment on a pull request review.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>http://developer.github.com/v3/pulls/comments/#delete-a-comment</remarks>
|
/// <remarks>http://developer.github.com/v3/pulls/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="number">The pull request review comment number</param>
|
/// <param name="number">The pull request review comment number</param>
|
||||||
IObservable<Unit> Delete(int repositoryId, int number);
|
IObservable<Unit> Delete(int repositoryId, int number);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -35,7 +35,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/pulls/#get-a-single-pull-request
|
/// http://developer.github.com/v3/pulls/#get-a-single-pull-request
|
||||||
/// </remarks>
|
/// </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 pull request</param>
|
/// <param name="number">The number of the pull request</param>
|
||||||
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get",
|
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get",
|
||||||
Justification = "Method makes a network request")]
|
Justification = "Method makes a network request")]
|
||||||
@@ -57,7 +57,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/pulls/#list-pull-requests
|
/// http://developer.github.com/v3/pulls/#list-pull-requests
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
IObservable<PullRequest> GetAllForRepository(int repositoryId);
|
IObservable<PullRequest> GetAllForRepository(int repositoryId);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -77,7 +77,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/pulls/#list-pull-requests
|
/// http://developer.github.com/v3/pulls/#list-pull-requests
|
||||||
/// </remarks>
|
/// </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>
|
||||||
IObservable<PullRequest> GetAllForRepository(int repositoryId, ApiOptions options);
|
IObservable<PullRequest> GetAllForRepository(int repositoryId, ApiOptions options);
|
||||||
|
|
||||||
@@ -98,7 +98,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/pulls/#list-pull-requests
|
/// http://developer.github.com/v3/pulls/#list-pull-requests
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="request">Used to filter and sort the list of pull requests returned</param>
|
/// <param name="request">Used to filter and sort the list of pull requests returned</param>
|
||||||
IObservable<PullRequest> GetAllForRepository(int repositoryId, PullRequestRequest request);
|
IObservable<PullRequest> GetAllForRepository(int repositoryId, PullRequestRequest request);
|
||||||
|
|
||||||
@@ -120,7 +120,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/pulls/#list-pull-requests
|
/// http://developer.github.com/v3/pulls/#list-pull-requests
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="request">Used to filter and sort the list of pull requests returned</param>
|
/// <param name="request">Used to filter and sort the list of pull requests returned</param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
IObservable<PullRequest> GetAllForRepository(int repositoryId, PullRequestRequest request, ApiOptions options);
|
IObservable<PullRequest> GetAllForRepository(int repositoryId, PullRequestRequest request, ApiOptions options);
|
||||||
@@ -138,7 +138,7 @@ namespace Octokit.Reactive
|
|||||||
/// Creates a pull request for the specified repository.
|
/// Creates a pull request for the specified repository.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>http://developer.github.com/v3/pulls/#create-a-pull-request</remarks>
|
/// <remarks>http://developer.github.com/v3/pulls/#create-a-pull-request</remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="newPullRequest">A <see cref="NewPullRequest"/> instance describing the new PullRequest to create</param>
|
/// <param name="newPullRequest">A <see cref="NewPullRequest"/> instance describing the new PullRequest to create</param>
|
||||||
IObservable<PullRequest> Create(int repositoryId, NewPullRequest newPullRequest);
|
IObservable<PullRequest> Create(int repositoryId, NewPullRequest newPullRequest);
|
||||||
|
|
||||||
@@ -157,7 +157,7 @@ namespace Octokit.Reactive
|
|||||||
/// Update a pull request for the specified repository.
|
/// Update a pull request for the specified repository.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>http://developer.github.com/v3/pulls/#update-a-pull-request</remarks>
|
/// <remarks>http://developer.github.com/v3/pulls/#update-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 PullRequest number</param>
|
/// <param name="number">The PullRequest number</param>
|
||||||
/// <param name="pullRequestUpdate">An <see cref="PullRequestUpdate"/> instance describing the changes to make to the PullRequest
|
/// <param name="pullRequestUpdate">An <see cref="PullRequestUpdate"/> instance describing the changes to make to the PullRequest
|
||||||
/// </param>
|
/// </param>
|
||||||
@@ -177,7 +177,7 @@ namespace Octokit.Reactive
|
|||||||
/// Merge a pull request.
|
/// Merge a pull request.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>http://developer.github.com/v3/pulls/#merge-a-pull-request-merge-buttontrade</remarks>
|
/// <remarks>http://developer.github.com/v3/pulls/#merge-a-pull-request-merge-buttontrade</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>
|
||||||
/// <param name="mergePullRequest">A <see cref="MergePullRequest"/> instance describing a pull request merge</param>
|
/// <param name="mergePullRequest">A <see cref="MergePullRequest"/> instance describing a pull request merge</param>
|
||||||
IObservable<PullRequestMerge> Merge(int repositoryId, int number, MergePullRequest mergePullRequest);
|
IObservable<PullRequestMerge> Merge(int repositoryId, int number, MergePullRequest mergePullRequest);
|
||||||
@@ -195,7 +195,7 @@ namespace Octokit.Reactive
|
|||||||
/// Gets the pull request merge status.
|
/// Gets the pull request merge status.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>http://developer.github.com/v3/pulls/#get-if-a-pull-request-has-been-merged</remarks>
|
/// <remarks>http://developer.github.com/v3/pulls/#get-if-a-pull-request-has-been-merged</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>
|
||||||
IObservable<bool> Merged(int repositoryId, int number);
|
IObservable<bool> Merged(int repositoryId, int number);
|
||||||
|
|
||||||
@@ -212,7 +212,7 @@ namespace Octokit.Reactive
|
|||||||
/// Gets the list of commits on a pull request.
|
/// Gets the list of commits on a pull request.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>http://developer.github.com/v3/pulls/#list-commits-on-a-pull-request</remarks>
|
/// <remarks>http://developer.github.com/v3/pulls/#list-commits-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>
|
||||||
IObservable<PullRequestCommit> Commits(int repositoryId, int number);
|
IObservable<PullRequestCommit> Commits(int repositoryId, int number);
|
||||||
|
|
||||||
@@ -229,7 +229,7 @@ namespace Octokit.Reactive
|
|||||||
/// Get the list of files on a pull request.
|
/// Get the list of files on a pull request.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://developer.github.com/v3/pulls/#list-pull-requests-files</remarks>
|
/// <remarks>https://developer.github.com/v3/pulls/#list-pull-requests-files</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>
|
||||||
IObservable<PullRequestFile> Files(int repositoryId, int number);
|
IObservable<PullRequestFile> Files(int repositoryId, int number);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -32,7 +32,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/git/refs/#get-a-reference
|
/// http://developer.github.com/v3/git/refs/#get-a-reference
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="reference">The name of the reference</param>
|
/// <param name="reference">The name of the reference</param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get",
|
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get",
|
||||||
@@ -56,7 +56,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/git/refs/#get-all-references
|
/// http://developer.github.com/v3/git/refs/#get-all-references
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
IObservable<Reference> GetAll(int repositoryId);
|
IObservable<Reference> GetAll(int repositoryId);
|
||||||
|
|
||||||
@@ -78,7 +78,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/git/refs/#get-all-references
|
/// http://developer.github.com/v3/git/refs/#get-all-references
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="subNamespace">The sub-namespace to get references for</param>
|
/// <param name="subNamespace">The sub-namespace to get references for</param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
IObservable<Reference> GetAllForSubNamespace(int repositoryId, string subNamespace);
|
IObservable<Reference> GetAllForSubNamespace(int repositoryId, string subNamespace);
|
||||||
@@ -101,7 +101,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/git/refs/#create-a-reference
|
/// http://developer.github.com/v3/git/refs/#create-a-reference
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="reference">The reference to create</param>
|
/// <param name="reference">The reference to create</param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
IObservable<Reference> Create(int repositoryId, NewReference reference);
|
IObservable<Reference> Create(int repositoryId, NewReference reference);
|
||||||
@@ -125,7 +125,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/git/refs/#update-a-reference
|
/// http://developer.github.com/v3/git/refs/#update-a-reference
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="reference">The name of the reference</param>
|
/// <param name="reference">The name of the reference</param>
|
||||||
/// <param name="referenceUpdate">The updated reference data</param>
|
/// <param name="referenceUpdate">The updated reference data</param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
@@ -149,7 +149,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/git/refs/#delete-a-reference
|
/// http://developer.github.com/v3/git/refs/#delete-a-reference
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="reference">The name of the reference</param>
|
/// <param name="reference">The name of the reference</param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
IObservable<Unit> Delete(int repositoryId, string reference);
|
IObservable<Unit> Delete(int repositoryId, string reference);
|
||||||
|
|||||||
@@ -29,7 +29,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/repos/releases/#list-releases-for-a-repository">API documentation</a> for more information.
|
/// See the <a href="http://developer.github.com/v3/repos/releases/#list-releases-for-a-repository">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The repository's ID</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
||||||
IObservable<Release> GetAll(int repositoryId);
|
IObservable<Release> GetAll(int repositoryId);
|
||||||
|
|
||||||
@@ -51,7 +51,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/repos/releases/#list-releases-for-a-repository">API documentation</a> for more information.
|
/// See the <a href="http://developer.github.com/v3/repos/releases/#list-releases-for-a-repository">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <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>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
||||||
IObservable<Release> GetAll(int repositoryId, ApiOptions options);
|
IObservable<Release> GetAll(int repositoryId, ApiOptions options);
|
||||||
@@ -75,7 +75,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/repos/releases/#get-a-single-release">API documentation</a> for more information.
|
/// See the <a href="http://developer.github.com/v3/repos/releases/#get-a-single-release">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The repository's ID</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="id">The id of the release</param>
|
/// <param name="id">The id of the release</param>
|
||||||
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
||||||
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get", Justification = "Method makes a network request")]
|
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get", Justification = "Method makes a network request")]
|
||||||
@@ -98,7 +98,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://developer.github.com/v3/repos/releases/#get-the-latest-release">API documentation</a> for more information.
|
/// See the <a href="https://developer.github.com/v3/repos/releases/#get-the-latest-release">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The repository's ID</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
||||||
IObservable<Release> GetLatest(int repositoryId);
|
IObservable<Release> GetLatest(int repositoryId);
|
||||||
|
|
||||||
@@ -120,7 +120,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/repos/releases/#create-a-release">API documentation</a> for more information.
|
/// See the <a href="http://developer.github.com/v3/repos/releases/#create-a-release">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The repository's ID</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="data">A description of the release to create</param>
|
/// <param name="data">A description of the release to create</param>
|
||||||
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
||||||
IObservable<Release> Create(int repositoryId, NewRelease data);
|
IObservable<Release> Create(int repositoryId, NewRelease data);
|
||||||
@@ -144,7 +144,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/repos/releases/#edit-a-release">API documentation</a> for more information.
|
/// See the <a href="http://developer.github.com/v3/repos/releases/#edit-a-release">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The repository's ID</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="id">The id of the release</param>
|
/// <param name="id">The id of the release</param>
|
||||||
/// <param name="data">A description of the release to edit</param>
|
/// <param name="data">A description of the release to edit</param>
|
||||||
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
||||||
@@ -168,7 +168,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/repos/releases/#delete-a-release">API documentation</a> for more information.
|
/// See the <a href="http://developer.github.com/v3/repos/releases/#delete-a-release">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The repository's ID</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="id">The id of the release to delete</param>
|
/// <param name="id">The id of the release to delete</param>
|
||||||
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
||||||
IObservable<Unit> Delete(int repositoryId, int id);
|
IObservable<Unit> Delete(int repositoryId, int id);
|
||||||
@@ -191,7 +191,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/repos/releases/#list-assets-for-a-release">API documentation</a> for more information.
|
/// See the <a href="http://developer.github.com/v3/repos/releases/#list-assets-for-a-release">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The repository's ID</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="id">The id of the <see cref="Release"/>.</param>
|
/// <param name="id">The id of the <see cref="Release"/>.</param>
|
||||||
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
||||||
IObservable<ReleaseAsset> GetAllAssets(int repositoryId, int id);
|
IObservable<ReleaseAsset> GetAllAssets(int repositoryId, int id);
|
||||||
@@ -215,7 +215,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/repos/releases/#list-assets-for-a-release">API documentation</a> for more information.
|
/// See the <a href="http://developer.github.com/v3/repos/releases/#list-assets-for-a-release">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The repository's ID</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="id">The id of the <see cref="Release"/>.</param>
|
/// <param name="id">The id of the <see cref="Release"/>.</param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
||||||
@@ -249,7 +249,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/repos/releases/#get-a-single-release-asset">API documentation</a> for more information.
|
/// See the <a href="http://developer.github.com/v3/repos/releases/#get-a-single-release-asset">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The repository's ID</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="assetId">The id of the <see cref="ReleaseAsset"/></param>
|
/// <param name="assetId">The id of the <see cref="ReleaseAsset"/></param>
|
||||||
IObservable<ReleaseAsset> GetAsset(int repositoryId, int assetId);
|
IObservable<ReleaseAsset> GetAsset(int repositoryId, int assetId);
|
||||||
|
|
||||||
@@ -271,7 +271,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/repos/releases/#edit-a-release-asset">API documentation</a> for more information.
|
/// See the <a href="http://developer.github.com/v3/repos/releases/#edit-a-release-asset">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The repository's ID</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="assetId">The id of the <see cref="ReleaseAsset"/></param>
|
/// <param name="assetId">The id of the <see cref="ReleaseAsset"/></param>
|
||||||
/// <param name="data">Description of the asset with its amended data</param>
|
/// <param name="data">Description of the asset with its amended data</param>
|
||||||
IObservable<ReleaseAsset> EditAsset(int repositoryId, int assetId, ReleaseAssetUpdate data);
|
IObservable<ReleaseAsset> EditAsset(int repositoryId, int assetId, ReleaseAssetUpdate data);
|
||||||
@@ -293,7 +293,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/repos/releases/#delete-a-release-asset">API documentation</a> for more information.
|
/// See the <a href="http://developer.github.com/v3/repos/releases/#delete-a-release-asset">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The repository's ID</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="id">The id of the <see cref="ReleaseAsset"/>.</param>
|
/// <param name="id">The id of the <see cref="ReleaseAsset"/>.</param>
|
||||||
IObservable<Unit> DeleteAsset(int repositoryId, int id);
|
IObservable<Unit> DeleteAsset(int repositoryId, int id);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -33,7 +33,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Deletes a repository for the specified owner and name.
|
/// Deletes a repository for the specified owner and name.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <remarks>Deleting a repository requires admin access. If OAuth is used, the `delete_repo` scope is required.</remarks>
|
/// <remarks>Deleting a repository requires admin access. If OAuth is used, the `delete_repo` scope is required.</remarks>
|
||||||
/// <returns>An <see cref="IObservable{Unit}"/> for the operation</returns>
|
/// <returns>An <see cref="IObservable{Unit}"/> for the operation</returns>
|
||||||
IObservable<Unit> Delete(int repositoryId);
|
IObservable<Unit> Delete(int repositoryId);
|
||||||
@@ -50,7 +50,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Retrieves the <see cref="Repository"/> for the specified owner and name.
|
/// Retrieves the <see cref="Repository"/> for the specified owner and name.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <returns>A <see cref="Repository"/></returns>
|
/// <returns>A <see cref="Repository"/></returns>
|
||||||
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get")]
|
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get")]
|
||||||
IObservable<Repository> Get(int repositoryId);
|
IObservable<Repository> Get(int repositoryId);
|
||||||
@@ -250,7 +250,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/repos/#list-branches">API documentation</a> for more details
|
/// See the <a href="http://developer.github.com/v3/repos/#list-branches">API documentation</a> for more details
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
||||||
/// <returns>All <see cref="T:Octokit.Branch"/>es of the repository</returns>
|
/// <returns>All <see cref="T:Octokit.Branch"/>es of the repository</returns>
|
||||||
IObservable<Branch> GetAllBranches(int repositoryId);
|
IObservable<Branch> GetAllBranches(int repositoryId);
|
||||||
@@ -274,7 +274,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/repos/#list-branches">API documentation</a> for more details
|
/// See the <a href="http://developer.github.com/v3/repos/#list-branches">API documentation</a> for more details
|
||||||
/// </remarks>
|
/// </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>
|
||||||
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
||||||
/// <returns>All <see cref="T:Octokit.Branch"/>es of the repository</returns>
|
/// <returns>All <see cref="T:Octokit.Branch"/>es of the repository</returns>
|
||||||
@@ -297,7 +297,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/repos/#list-contributors">API documentation</a> for more details
|
/// See the <a href="http://developer.github.com/v3/repos/#list-contributors">API documentation</a> for more details
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <returns>All contributors of the repository.</returns>
|
/// <returns>All contributors of the repository.</returns>
|
||||||
IObservable<RepositoryContributor> GetAllContributors(int repositoryId);
|
IObservable<RepositoryContributor> GetAllContributors(int repositoryId);
|
||||||
|
|
||||||
@@ -319,7 +319,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/repos/#list-contributors">API documentation</a> for more details
|
/// See the <a href="http://developer.github.com/v3/repos/#list-contributors">API documentation</a> for more details
|
||||||
/// </remarks>
|
/// </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>All contributors of the repository.</returns>
|
/// <returns>All contributors of the repository.</returns>
|
||||||
IObservable<RepositoryContributor> GetAllContributors(int repositoryId, ApiOptions options);
|
IObservable<RepositoryContributor> GetAllContributors(int repositoryId, ApiOptions options);
|
||||||
@@ -342,7 +342,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/repos/#list-contributors">API documentation</a> for more details
|
/// See the <a href="http://developer.github.com/v3/repos/#list-contributors">API documentation</a> for more details
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="includeAnonymous">True if anonymous contributors should be included in result; Otherwise false</param>
|
/// <param name="includeAnonymous">True if anonymous contributors should be included in result; Otherwise false</param>
|
||||||
/// <returns>All contributors of the repository.</returns>
|
/// <returns>All contributors of the repository.</returns>
|
||||||
IObservable<RepositoryContributor> GetAllContributors(int repositoryId, bool includeAnonymous);
|
IObservable<RepositoryContributor> GetAllContributors(int repositoryId, bool includeAnonymous);
|
||||||
@@ -366,7 +366,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/repos/#list-contributors">API documentation</a> for more details
|
/// See the <a href="http://developer.github.com/v3/repos/#list-contributors">API documentation</a> for more details
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="includeAnonymous">True if anonymous contributors should be included in result; Otherwise false</param>
|
/// <param name="includeAnonymous">True if anonymous contributors should be included in result; Otherwise false</param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
/// <returns>All contributors of the repository.</returns>
|
/// <returns>All contributors of the repository.</returns>
|
||||||
@@ -389,7 +389,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/repos/#list-languages">API documentation</a> for more details
|
/// See the <a href="http://developer.github.com/v3/repos/#list-languages">API documentation</a> for more details
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <returns>All languages used in the repository and the number of bytes of each language.</returns>
|
/// <returns>All languages used in the repository and the number of bytes of each language.</returns>
|
||||||
IObservable<RepositoryLanguage> GetAllLanguages(int repositoryId);
|
IObservable<RepositoryLanguage> GetAllLanguages(int repositoryId);
|
||||||
|
|
||||||
@@ -410,7 +410,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/repos/#list-teams">API documentation</a> for more details
|
/// See the <a href="http://developer.github.com/v3/repos/#list-teams">API documentation</a> for more details
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <returns>All <see cref="T:Octokit.Team"/>s associated with the repository</returns>
|
/// <returns>All <see cref="T:Octokit.Team"/>s associated with the repository</returns>
|
||||||
IObservable<Team> GetAllTeams(int repositoryId);
|
IObservable<Team> GetAllTeams(int repositoryId);
|
||||||
|
|
||||||
@@ -432,7 +432,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/repos/#list-teams">API documentation</a> for more details
|
/// See the <a href="http://developer.github.com/v3/repos/#list-teams">API documentation</a> for more details
|
||||||
/// </remarks>
|
/// </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>All <see cref="T:Octokit.Team"/>s associated with the repository</returns>
|
/// <returns>All <see cref="T:Octokit.Team"/>s associated with the repository</returns>
|
||||||
IObservable<Team> GetAllTeams(int repositoryId, ApiOptions options);
|
IObservable<Team> GetAllTeams(int repositoryId, ApiOptions options);
|
||||||
@@ -454,7 +454,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/repos/#list-tags">API documentation</a> for more details
|
/// See the <a href="http://developer.github.com/v3/repos/#list-tags">API documentation</a> for more details
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <returns>All of the repositories tags.</returns>
|
/// <returns>All of the repositories tags.</returns>
|
||||||
IObservable<RepositoryTag> GetAllTags(int repositoryId);
|
IObservable<RepositoryTag> GetAllTags(int repositoryId);
|
||||||
|
|
||||||
@@ -476,7 +476,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/repos/#list-tags">API documentation</a> for more details
|
/// See the <a href="http://developer.github.com/v3/repos/#list-tags">API documentation</a> for more details
|
||||||
/// </remarks>
|
/// </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>All of the repositories tags.</returns>
|
/// <returns>All of the repositories tags.</returns>
|
||||||
IObservable<RepositoryTag> GetAllTags(int repositoryId, ApiOptions options);
|
IObservable<RepositoryTag> GetAllTags(int repositoryId, ApiOptions options);
|
||||||
@@ -499,7 +499,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/repos/#get-branch">API documentation</a> for more details
|
/// See the <a href="http://developer.github.com/v3/repos/#get-branch">API documentation</a> for more details
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="branchName">The name of the branch</param>
|
/// <param name="branchName">The name of the branch</param>
|
||||||
/// <returns>The specified <see cref="T:Octokit.Branch"/></returns>
|
/// <returns>The specified <see cref="T:Octokit.Branch"/></returns>
|
||||||
IObservable<Branch> GetBranch(int repositoryId, string branchName);
|
IObservable<Branch> GetBranch(int repositoryId, string branchName);
|
||||||
@@ -516,7 +516,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Updates the specified repository with the values given in <paramref name="update"/>
|
/// Updates the specified repository with the values given in <paramref name="update"/>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="update">New values to update the repository with</param>
|
/// <param name="update">New values to update the repository with</param>
|
||||||
/// <returns>The updated <see cref="T:Octokit.Repository"/></returns>
|
/// <returns>The updated <see cref="T:Octokit.Repository"/></returns>
|
||||||
IObservable<Repository> Edit(int repositoryId, RepositoryUpdate update);
|
IObservable<Repository> Edit(int repositoryId, RepositoryUpdate update);
|
||||||
@@ -534,7 +534,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Edit the specified branch with the values given in <paramref name="update"/>
|
/// Edit the specified branch with the values given in <paramref name="update"/>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="branch">The name of the branch</param>
|
/// <param name="branch">The name of the branch</param>
|
||||||
/// <param name="update">New values to update the branch with</param>
|
/// <param name="update">New values to update the branch with</param>
|
||||||
/// <returns>The updated <see cref="T:Octokit.Branch"/></returns>
|
/// <returns>The updated <see cref="T:Octokit.Branch"/></returns>
|
||||||
|
|||||||
@@ -27,7 +27,7 @@ namespace Octokit.Reactive
|
|||||||
/// Gets a single Repository Comment by number.
|
/// Gets a single Repository Comment by number.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>http://developer.github.com/v3/repos/comments/#get-a-single-commit-comment</remarks>
|
/// <remarks>http://developer.github.com/v3/repos/comments/#get-a-single-commit-comment</remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="number">The comment id</param>
|
/// <param name="number">The comment id</param>
|
||||||
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get",
|
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get",
|
||||||
Justification = "Method makes a network request")]
|
Justification = "Method makes a network request")]
|
||||||
@@ -45,7 +45,7 @@ namespace Octokit.Reactive
|
|||||||
/// Gets Commit Comments for a repository.
|
/// Gets Commit Comments for a repository.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>http://developer.github.com/v3/repos/comments/#list-commit-comments-for-a-repository</remarks>
|
/// <remarks>http://developer.github.com/v3/repos/comments/#list-commit-comments-for-a-repository</remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
IObservable<CommitComment> GetAllForRepository(int repositoryId);
|
IObservable<CommitComment> GetAllForRepository(int repositoryId);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -61,7 +61,7 @@ namespace Octokit.Reactive
|
|||||||
/// Gets Commit Comments for a repository.
|
/// Gets Commit Comments for a repository.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>http://developer.github.com/v3/repos/comments/#list-commit-comments-for-a-repository</remarks>
|
/// <remarks>http://developer.github.com/v3/repos/comments/#list-commit-comments-for-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 to change the API response</param>
|
/// <param name="options">Options to change the API response</param>
|
||||||
IObservable<CommitComment> GetAllForRepository(int repositoryId, ApiOptions options);
|
IObservable<CommitComment> GetAllForRepository(int repositoryId, ApiOptions options);
|
||||||
|
|
||||||
@@ -78,7 +78,7 @@ namespace Octokit.Reactive
|
|||||||
/// Gets Commit Comments for a specified Commit.
|
/// Gets Commit Comments for a specified Commit.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>http://developer.github.com/v3/repos/comments/#list-comments-for-a-single-commit</remarks>
|
/// <remarks>http://developer.github.com/v3/repos/comments/#list-comments-for-a-single-commit</remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="sha">The sha of the commit</param>
|
/// <param name="sha">The sha of the commit</param>
|
||||||
IObservable<CommitComment> GetAllForCommit(int repositoryId, string sha);
|
IObservable<CommitComment> GetAllForCommit(int repositoryId, string sha);
|
||||||
|
|
||||||
@@ -96,7 +96,7 @@ namespace Octokit.Reactive
|
|||||||
/// Gets Commit Comments for a specified Commit.
|
/// Gets Commit Comments for a specified Commit.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>http://developer.github.com/v3/repos/comments/#list-comments-for-a-single-commit</remarks>
|
/// <remarks>http://developer.github.com/v3/repos/comments/#list-comments-for-a-single-commit</remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="sha">The sha of the commit</param>
|
/// <param name="sha">The sha of the commit</param>
|
||||||
/// <param name="options">Options to change the API response</param>
|
/// <param name="options">Options to change the API response</param>
|
||||||
IObservable<CommitComment> GetAllForCommit(int repositoryId, string sha, ApiOptions options);
|
IObservable<CommitComment> GetAllForCommit(int repositoryId, string sha, ApiOptions options);
|
||||||
@@ -115,7 +115,7 @@ namespace Octokit.Reactive
|
|||||||
/// Creates a new Commit Comment for a specified Commit.
|
/// Creates a new Commit Comment for a specified Commit.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>http://developer.github.com/v3/repos/comments/#create-a-commit-comment</remarks>
|
/// <remarks>http://developer.github.com/v3/repos/comments/#create-a-commit-comment</remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="sha">The sha reference of commit</param>
|
/// <param name="sha">The sha reference of commit</param>
|
||||||
/// <param name="newCommitComment">The new comment to add to the commit</param>
|
/// <param name="newCommitComment">The new comment to add to the commit</param>
|
||||||
IObservable<CommitComment> Create(int repositoryId, string sha, NewCommitComment newCommitComment);
|
IObservable<CommitComment> Create(int repositoryId, string sha, NewCommitComment newCommitComment);
|
||||||
@@ -134,7 +134,7 @@ namespace Octokit.Reactive
|
|||||||
/// Updates a specified Commit Comment.
|
/// Updates a specified Commit Comment.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>http://developer.github.com/v3/repos/comments/#update-a-commit-comment</remarks>
|
/// <remarks>http://developer.github.com/v3/repos/comments/#update-a-commit-comment</remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="number">The comment number</param>
|
/// <param name="number">The comment number</param>
|
||||||
/// <param name="commentUpdate">The modified comment</param>
|
/// <param name="commentUpdate">The modified comment</param>
|
||||||
IObservable<CommitComment> Update(int repositoryId, int number, string commentUpdate);
|
IObservable<CommitComment> Update(int repositoryId, int number, string commentUpdate);
|
||||||
@@ -152,7 +152,7 @@ namespace Octokit.Reactive
|
|||||||
/// Deletes the specified Commit Comment
|
/// Deletes the specified Commit Comment
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>http://developer.github.com/v3/repos/comments/#delete-a-commit-comment</remarks>
|
/// <remarks>http://developer.github.com/v3/repos/comments/#delete-a-commit-comment</remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="number">The comment id</param>
|
/// <param name="number">The comment id</param>
|
||||||
IObservable<Unit> Delete(int repositoryId, int number);
|
IObservable<Unit> Delete(int repositoryId, int number);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Compare two references in a repository
|
/// Compare two references in a repository
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="base">The reference to use as the base commit</param>
|
/// <param name="base">The reference to use as the base commit</param>
|
||||||
/// <param name="head">The reference to use as the head commit</param>
|
/// <param name="head">The reference to use as the head commit</param>
|
||||||
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "base")]
|
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "base")]
|
||||||
@@ -43,7 +43,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets all commits for a given repository
|
/// Gets all commits for a given repository
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="reference">The reference for the commit</param>
|
/// <param name="reference">The reference for the commit</param>
|
||||||
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get",
|
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get",
|
||||||
Justification = "Method makes a network request")]
|
Justification = "Method makes a network request")]
|
||||||
@@ -59,7 +59,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets all commits for a given repository
|
/// Gets all commits for a given repository
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
IObservable<GitHubCommit> GetAll(int repositoryId);
|
IObservable<GitHubCommit> GetAll(int repositoryId);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -73,7 +73,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets all commits for a given repository
|
/// Gets all commits for a given repository
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <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>
|
||||||
IObservable<GitHubCommit> GetAll(int repositoryId, ApiOptions options);
|
IObservable<GitHubCommit> GetAll(int repositoryId, ApiOptions options);
|
||||||
|
|
||||||
@@ -88,7 +88,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets all commits for a given repository
|
/// Gets all commits for a given repository
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="request">Used to filter list of commits returned</param>
|
/// <param name="request">Used to filter list of commits returned</param>
|
||||||
IObservable<GitHubCommit> GetAll(int repositoryId, CommitRequest request);
|
IObservable<GitHubCommit> GetAll(int repositoryId, CommitRequest request);
|
||||||
|
|
||||||
@@ -104,7 +104,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets all commits for a given repository
|
/// Gets all commits for a given repository
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="request">Used to filter list of commits returned</param>
|
/// <param name="request">Used to filter list of commits returned</param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
IObservable<GitHubCommit> GetAll(int repositoryId, CommitRequest request, ApiOptions options);
|
IObservable<GitHubCommit> GetAll(int repositoryId, CommitRequest request, ApiOptions options);
|
||||||
@@ -120,7 +120,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Get the SHA-1 of a commit reference
|
/// Get the SHA-1 of a commit reference
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="reference">The repository reference</param>
|
/// <param name="reference">The repository reference</param>
|
||||||
IObservable<string> GetSha1(int repositoryId, string reference);
|
IObservable<string> GetSha1(int repositoryId, string reference);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -21,7 +21,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Returns the HTML rendered README.
|
/// Returns the HTML rendered README.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
IObservable<Readme> GetReadme(int repositoryId);
|
IObservable<Readme> GetReadme(int repositoryId);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -34,7 +34,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Returns just the HTML portion of the README without the surrounding HTML document.
|
/// Returns just the HTML portion of the README without the surrounding HTML document.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
IObservable<string> GetReadmeHtml(int repositoryId);
|
IObservable<string> GetReadmeHtml(int repositoryId);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -49,7 +49,7 @@ namespace Octokit.Reactive
|
|||||||
/// Get an archive of a given repository's contents
|
/// Get an archive of a given repository's contents
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://developer.github.com/v3/repos/contents/#get-archive-link</remarks>
|
/// <remarks>https://developer.github.com/v3/repos/contents/#get-archive-link</remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
IObservable<byte[]> GetArchive(int repositoryId);
|
IObservable<byte[]> GetArchive(int repositoryId);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -65,7 +65,7 @@ namespace Octokit.Reactive
|
|||||||
/// Get an archive of a given repository's contents, in a specific format
|
/// Get an archive of a given repository's contents, in a specific format
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://developer.github.com/v3/repos/contents/#get-archive-link</remarks>
|
/// <remarks>https://developer.github.com/v3/repos/contents/#get-archive-link</remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="archiveFormat">The format of the archive. Can be either tarball or zipball</param>
|
/// <param name="archiveFormat">The format of the archive. Can be either tarball or zipball</param>
|
||||||
IObservable<byte[]> GetArchive(int repositoryId, ArchiveFormat archiveFormat);
|
IObservable<byte[]> GetArchive(int repositoryId, ArchiveFormat archiveFormat);
|
||||||
|
|
||||||
@@ -83,7 +83,7 @@ namespace Octokit.Reactive
|
|||||||
/// Get an archive of a given repository's contents, using a specific format and reference
|
/// Get an archive of a given repository's contents, using a specific format and reference
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://developer.github.com/v3/repos/contents/#get-archive-link</remarks>
|
/// <remarks>https://developer.github.com/v3/repos/contents/#get-archive-link</remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="archiveFormat">The format of the archive. Can be either tarball or zipball</param>
|
/// <param name="archiveFormat">The format of the archive. Can be either tarball or zipball</param>
|
||||||
/// <param name="reference">A valid Git reference.</param>
|
/// <param name="reference">A valid Git reference.</param>
|
||||||
IObservable<byte[]> GetArchive(int repositoryId, ArchiveFormat archiveFormat, string reference);
|
IObservable<byte[]> GetArchive(int repositoryId, ArchiveFormat archiveFormat, string reference);
|
||||||
@@ -103,7 +103,7 @@ namespace Octokit.Reactive
|
|||||||
/// Get an archive of a given repository's contents, in a specific format
|
/// Get an archive of a given repository's contents, in a specific format
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://developer.github.com/v3/repos/contents/#get-archive-link</remarks>
|
/// <remarks>https://developer.github.com/v3/repos/contents/#get-archive-link</remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="archiveFormat">The format of the archive. Can be either tarball or zipball</param>
|
/// <param name="archiveFormat">The format of the archive. Can be either tarball or zipball</param>
|
||||||
/// <param name="reference">A valid Git reference.</param>
|
/// <param name="reference">A valid Git reference.</param>
|
||||||
/// <param name="timeout"> Time span until timeout </param>
|
/// <param name="timeout"> Time span until timeout </param>
|
||||||
@@ -126,7 +126,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// If given a path to a single file, this method returns a collection containing only that file.
|
/// If given a path to a single file, this method returns a collection containing only that file.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="path">The content path</param>
|
/// <param name="path">The content path</param>
|
||||||
IObservable<RepositoryContent> GetAllContents(int repositoryId, string path);
|
IObservable<RepositoryContent> GetAllContents(int repositoryId, string path);
|
||||||
|
|
||||||
@@ -140,7 +140,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Returns the contents of the root directory in a repository.
|
/// Returns the contents of the root directory in a repository.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
IObservable<RepositoryContent> GetAllContents(int repositoryId);
|
IObservable<RepositoryContent> GetAllContents(int repositoryId);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -163,7 +163,7 @@ namespace Octokit.Reactive
|
|||||||
/// If given a path to a single file, this method returns a collection containing only that file.
|
/// If given a path to a single file, this method returns a collection containing only that file.
|
||||||
/// See the <a href="https://developer.github.com/v3/repos/contents/#get-contents">API documentation</a> for more information.
|
/// See the <a href="https://developer.github.com/v3/repos/contents/#get-contents">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="reference">The name of the commit/branch/tag. Default: the repository’s default branch (usually master)</param>
|
/// <param name="reference">The name of the commit/branch/tag. Default: the repository’s default branch (usually master)</param>
|
||||||
/// <param name="path">The content path</param>
|
/// <param name="path">The content path</param>
|
||||||
IObservable<RepositoryContent> GetAllContentsByRef(int repositoryId, string reference, string path);
|
IObservable<RepositoryContent> GetAllContentsByRef(int repositoryId, string reference, string path);
|
||||||
@@ -179,7 +179,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Returns the contents of the home directory in a repository.
|
/// Returns the contents of the home directory in a repository.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="reference">The name of the commit/branch/tag. Default: the repository’s default branch (usually master)</param>
|
/// <param name="reference">The name of the commit/branch/tag. Default: the repository’s default branch (usually master)</param>
|
||||||
IObservable<RepositoryContent> GetAllContentsByRef(int repositoryId, string reference);
|
IObservable<RepositoryContent> GetAllContentsByRef(int repositoryId, string reference);
|
||||||
|
|
||||||
@@ -195,7 +195,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Creates a commit that creates a new file in a repository.
|
/// Creates a commit that creates a new file in a repository.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="path">The path to the file</param>
|
/// <param name="path">The path to the file</param>
|
||||||
/// <param name="request">Information about the file to create</param>
|
/// <param name="request">Information about the file to create</param>
|
||||||
IObservable<RepositoryContentChangeSet> CreateFile(int repositoryId, string path, CreateFileRequest request);
|
IObservable<RepositoryContentChangeSet> CreateFile(int repositoryId, string path, CreateFileRequest request);
|
||||||
@@ -212,7 +212,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Creates a commit that updates the contents of a file in a repository.
|
/// Creates a commit that updates the contents of a file in a repository.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="path">The path to the file</param>
|
/// <param name="path">The path to the file</param>
|
||||||
/// <param name="request">Information about the file to update</param>
|
/// <param name="request">Information about the file to update</param>
|
||||||
IObservable<RepositoryContentChangeSet> UpdateFile(int repositoryId, string path, UpdateFileRequest request);
|
IObservable<RepositoryContentChangeSet> UpdateFile(int repositoryId, string path, UpdateFileRequest request);
|
||||||
@@ -229,7 +229,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Creates a commit that deletes a file in a repository.
|
/// Creates a commit that deletes a file in a repository.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="path">The path to the file</param>
|
/// <param name="path">The path to the file</param>
|
||||||
/// <param name="request">Information about the file to delete</param>
|
/// <param name="request">Information about the file to delete</param>
|
||||||
IObservable<Unit> DeleteFile(int repositoryId, string path, DeleteFileRequest request);
|
IObservable<Unit> DeleteFile(int repositoryId, string path, DeleteFileRequest request);
|
||||||
|
|||||||
@@ -30,7 +30,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://developer.github.com/v3/repos/keys/#get"> API documentation</a> for more information.
|
/// See the <a href="https://developer.github.com/v3/repos/keys/#get"> API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository.</param>
|
/// <param name="repositoryId">The Id of the repository.</param>
|
||||||
/// <param name="number">The id of the deploy key.</param>
|
/// <param name="number">The id of the deploy key.</param>
|
||||||
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get")]
|
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get")]
|
||||||
IObservable<DeployKey> Get(int repositoryId, int number);
|
IObservable<DeployKey> Get(int repositoryId, int number);
|
||||||
@@ -51,7 +51,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://developer.github.com/v3/repos/keys/#list"> API documentation</a> for more information.
|
/// See the <a href="https://developer.github.com/v3/repos/keys/#list"> API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository.</param>
|
/// <param name="repositoryId">The Id of the repository.</param>
|
||||||
IObservable<DeployKey> GetAll(int repositoryId);
|
IObservable<DeployKey> GetAll(int repositoryId);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -71,7 +71,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://developer.github.com/v3/repos/keys/#list"> API documentation</a> for more information.
|
/// See the <a href="https://developer.github.com/v3/repos/keys/#list"> API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </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>
|
||||||
IObservable<DeployKey> GetAll(int repositoryId, ApiOptions options);
|
IObservable<DeployKey> GetAll(int repositoryId, ApiOptions options);
|
||||||
|
|
||||||
@@ -92,7 +92,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://developer.github.com/v3/repos/keys/#create"> API documentation</a> for more information.
|
/// See the <a href="https://developer.github.com/v3/repos/keys/#create"> API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository.</param>
|
/// <param name="repositoryId">The Id of the repository.</param>
|
||||||
/// <param name="newDeployKey">The deploy key to create for the repository.</param>
|
/// <param name="newDeployKey">The deploy key to create for the repository.</param>
|
||||||
IObservable<DeployKey> Create(int repositoryId, NewDeployKey newDeployKey);
|
IObservable<DeployKey> Create(int repositoryId, NewDeployKey newDeployKey);
|
||||||
|
|
||||||
@@ -113,7 +113,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://developer.github.com/v3/repos/keys/#delete"> API documentation</a> for more information.
|
/// See the <a href="https://developer.github.com/v3/repos/keys/#delete"> API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository.</param>
|
/// <param name="repositoryId">The Id of the repository.</param>
|
||||||
/// <param name="number">The id of the deploy key to delete.</param>
|
/// <param name="number">The id of the deploy key to delete.</param>
|
||||||
IObservable<Unit> Delete(int repositoryId, int number);
|
IObservable<Unit> Delete(int repositoryId, int number);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -26,7 +26,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See <a href="http://developer.github.com/v3/repos/forks/#list-forks">API documentation</a> for more information.
|
/// See <a href="http://developer.github.com/v3/repos/forks/#list-forks">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
IObservable<Repository> GetAll(int repositoryId);
|
IObservable<Repository> GetAll(int repositoryId);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -46,7 +46,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See <a href="http://developer.github.com/v3/repos/forks/#list-forks">API documentation</a> for more information.
|
/// See <a href="http://developer.github.com/v3/repos/forks/#list-forks">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </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>
|
||||||
IObservable<Repository> GetAll(int repositoryId, ApiOptions options);
|
IObservable<Repository> GetAll(int repositoryId, ApiOptions options);
|
||||||
|
|
||||||
@@ -67,7 +67,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See <a href="http://developer.github.com/v3/repos/forks/#list-forks">API documentation</a> for more information.
|
/// See <a href="http://developer.github.com/v3/repos/forks/#list-forks">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="request">Used to request and filter a list of repository forks</param>
|
/// <param name="request">Used to request and filter a list of repository forks</param>
|
||||||
IObservable<Repository> GetAll(int repositoryId, RepositoryForksListRequest request);
|
IObservable<Repository> GetAll(int repositoryId, RepositoryForksListRequest request);
|
||||||
|
|
||||||
@@ -89,7 +89,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See <a href="http://developer.github.com/v3/repos/forks/#list-forks">API documentation</a> for more information.
|
/// See <a href="http://developer.github.com/v3/repos/forks/#list-forks">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="request">Used to request and filter a list of repository forks</param>
|
/// <param name="request">Used to request and filter a list of repository forks</param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
IObservable<Repository> GetAll(int repositoryId, RepositoryForksListRequest request, ApiOptions options);
|
IObservable<Repository> GetAll(int repositoryId, RepositoryForksListRequest request, ApiOptions options);
|
||||||
@@ -111,7 +111,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See <a href="http://developer.github.com/v3/repos/forks/#create-a-fork">API documentation</a> for more information.
|
/// See <a href="http://developer.github.com/v3/repos/forks/#create-a-fork">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="fork">Used to fork a repository</param>
|
/// <param name="fork">Used to fork a repository</param>
|
||||||
IObservable<Repository> Create(int repositoryId, NewRepositoryFork fork);
|
IObservable<Repository> Create(int repositoryId, NewRepositoryFork fork);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets the list of hooks defined for a repository
|
/// Gets the list of hooks defined for a repository
|
||||||
/// </summary>
|
/// </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>
|
/// <remarks>See <a href="http://developer.github.com/v3/repos/hooks/#list">API documentation</a> for more information.</remarks>
|
||||||
IObservable<RepositoryHook> GetAll(int repositoryId);
|
IObservable<RepositoryHook> GetAll(int repositoryId);
|
||||||
|
|
||||||
@@ -39,7 +39,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets the list of hooks defined for a repository
|
/// Gets the list of hooks defined for a repository
|
||||||
/// </summary>
|
/// </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>
|
/// <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>
|
/// <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);
|
IObservable<RepositoryHook> GetAll(int repositoryId, ApiOptions options);
|
||||||
@@ -57,7 +57,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets a single hook by Id
|
/// Gets a single hook by Id
|
||||||
/// </summary>
|
/// </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="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>
|
/// <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")]
|
[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>
|
/// <summary>
|
||||||
/// Creates a hook for a repository
|
/// Creates a hook for a repository
|
||||||
/// </summary>
|
/// </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>
|
/// <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>
|
/// <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);
|
IObservable<RepositoryHook> Create(int repositoryId, NewRepositoryHook hook);
|
||||||
@@ -93,7 +93,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Edits a hook for a repository
|
/// Edits a hook for a repository
|
||||||
/// </summary>
|
/// </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="hookId">The repository's hook id</param>
|
||||||
/// <param name="hook">The requested changes to an edit repository hook</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>
|
/// <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>
|
/// <summary>
|
||||||
/// Tests a hook for a repository
|
/// Tests a hook for a repository
|
||||||
/// </summary>
|
/// </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="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.
|
/// <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
|
/// 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>
|
/// <summary>
|
||||||
/// This will trigger a ping event to be sent to the hook.
|
/// This will trigger a ping event to be sent to the hook.
|
||||||
/// </summary>
|
/// </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="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>
|
/// <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);
|
IObservable<Unit> Ping(int repositoryId, int hookId);
|
||||||
@@ -149,7 +149,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Deletes a hook for a repository
|
/// Deletes a hook for a repository
|
||||||
/// </summary>
|
/// </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="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>
|
/// <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);
|
IObservable<Unit> Delete(int repositoryId, int hookId);
|
||||||
|
|||||||
@@ -25,7 +25,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets the page metadata for a given repository
|
/// Gets the page metadata for a given repository
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://developer.github.com/v3/repos/pages/#get-information-about-a-pages-site">API documentation</a> for more information.
|
/// See the <a href="https://developer.github.com/v3/repos/pages/#get-information-about-a-pages-site">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
@@ -45,7 +45,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets all build metadata for a given repository
|
/// Gets all build metadata for a given repository
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://developer.github.com/v3/repos/pages/#list-pages-builds">API documentation</a> for more information.
|
/// See the <a href="https://developer.github.com/v3/repos/pages/#list-pages-builds">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
@@ -65,7 +65,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets all build metadata for a given repository
|
/// Gets all build metadata for a given repository
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="options">Options to change the API response</param>
|
/// <param name="options">Options to change the API response</param>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://developer.github.com/v3/repos/pages/#list-pages-builds">API documentation</a> for more information.
|
/// See the <a href="https://developer.github.com/v3/repos/pages/#list-pages-builds">API documentation</a> for more information.
|
||||||
@@ -85,7 +85,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets the build metadata for the last build for a given repository
|
/// Gets the build metadata for the last build for a given repository
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://developer.github.com/v3/repos/pages/#list-latest-pages-build">API documentation</a> for more information.
|
/// See the <a href="https://developer.github.com/v3/repos/pages/#list-latest-pages-build">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Retrieves the <see cref="SshKey"/> for the specified id.
|
/// Retrieves the <see cref="SshKey"/> for the specified id.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="id">The ID of the SSH key</param>
|
/// <param name="id">The Id of the SSH key</param>
|
||||||
/// <returns>A <see cref="SshKey"/></returns>
|
/// <returns>A <see cref="SshKey"/></returns>
|
||||||
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get")]
|
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get")]
|
||||||
[Obsolete("This method is obsolete. Please use User.Keys.Get(int) instead.")]
|
[Obsolete("This method is obsolete. Please use User.Keys.Get(int) instead.")]
|
||||||
@@ -45,7 +45,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Update the specified <see cref="UserUpdate"/>.
|
/// Update the specified <see cref="UserUpdate"/>.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="id">The ID of the SSH key</param>
|
/// <param name="id">The Id of the SSH key</param>
|
||||||
/// <param name="key">The SSH Key contents</param>
|
/// <param name="key">The SSH Key contents</param>
|
||||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated.</exception>
|
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated.</exception>
|
||||||
/// <returns>A <see cref="User"/></returns>
|
/// <returns>A <see cref="User"/></returns>
|
||||||
|
|||||||
@@ -21,7 +21,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Retrieves all of the stargazers for the passed repository
|
/// Retrieves all of the stargazers for the passed repository
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated</exception>
|
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated</exception>
|
||||||
IObservable<User> GetAllStargazers(int repositoryId);
|
IObservable<User> GetAllStargazers(int repositoryId);
|
||||||
|
|
||||||
@@ -37,7 +37,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Retrieves all of the stargazers for the passed repository
|
/// Retrieves all of the stargazers for the passed repository
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <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>
|
||||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated</exception>
|
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated</exception>
|
||||||
IObservable<User> GetAllStargazers(int repositoryId, ApiOptions options);
|
IObservable<User> GetAllStargazers(int repositoryId, ApiOptions options);
|
||||||
@@ -53,7 +53,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Retrieves all of the stargazers for the passed repository with star creation timestamps.
|
/// Retrieves all of the stargazers for the passed repository with star creation timestamps.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated.</exception>
|
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated.</exception>
|
||||||
IObservable<UserStar> GetAllStargazersWithTimestamps(int repositoryId);
|
IObservable<UserStar> GetAllStargazersWithTimestamps(int repositoryId);
|
||||||
|
|
||||||
@@ -69,7 +69,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Retrieves all of the stargazers for the passed repository with star creation timestamps.
|
/// Retrieves all of the stargazers for the passed repository with star creation timestamps.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <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>
|
||||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated.</exception>
|
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated.</exception>
|
||||||
IObservable<UserStar> GetAllStargazersWithTimestamps(int repositoryId, ApiOptions options);
|
IObservable<UserStar> GetAllStargazersWithTimestamps(int repositoryId, ApiOptions options);
|
||||||
|
|||||||
@@ -21,7 +21,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Returns a list of <see cref="Contributor"/> for the given repository
|
/// Returns a list of <see cref="Contributor"/> for the given repository
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
IObservable<IEnumerable<Contributor>> GetContributors(int repositoryId);
|
IObservable<IEnumerable<Contributor>> GetContributors(int repositoryId);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -34,7 +34,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Returns the last year of commit activity grouped by week.
|
/// Returns the last year of commit activity grouped by week.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
IObservable<CommitActivity> GetCommitActivity(int repositoryId);
|
IObservable<CommitActivity> GetCommitActivity(int repositoryId);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -47,7 +47,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Returns a weekly aggregate of the number of additions and deletions pushed to a repository.
|
/// Returns a weekly aggregate of the number of additions and deletions pushed to a repository.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
IObservable<CodeFrequency> GetCodeFrequency(int repositoryId);
|
IObservable<CodeFrequency> GetCodeFrequency(int repositoryId);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -60,7 +60,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Returns the total commit counts for the owner and total commit counts in total.
|
/// Returns the total commit counts for the owner and total commit counts in total.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
IObservable<Participation> GetParticipation(int repositoryId);
|
IObservable<Participation> GetParticipation(int repositoryId);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -73,7 +73,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Returns a list of the number of commits per hour in each day
|
/// Returns a list of the number of commits per hour in each day
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
IObservable<PunchCard> GetPunchCard(int repositoryId);
|
IObservable<PunchCard> GetPunchCard(int repositoryId);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -30,7 +30,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/git/tags/#get-a-tag
|
/// http://developer.github.com/v3/git/tags/#get-a-tag
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="reference">Tha sha reference of the tag</param>
|
/// <param name="reference">Tha sha reference of the tag</param>
|
||||||
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get",
|
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get",
|
||||||
Justification = "Method makes a network request")]
|
Justification = "Method makes a network request")]
|
||||||
@@ -53,7 +53,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/git/tags/#create-a-tag-object
|
/// http://developer.github.com/v3/git/tags/#create-a-tag-object
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="tag">The tag to create</param>
|
/// <param name="tag">The tag to create</param>
|
||||||
IObservable<GitTag> Create(int repositoryId, NewTag tag);
|
IObservable<GitTag> Create(int repositoryId, NewTag tag);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -28,7 +28,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/git/trees/#get-a-tree
|
/// http://developer.github.com/v3/git/trees/#get-a-tree
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="reference">The SHA that references the tree</param>
|
/// <param name="reference">The SHA that references the tree</param>
|
||||||
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get")]
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get")]
|
||||||
IObservable<TreeResponse> Get(int repositoryId, string reference);
|
IObservable<TreeResponse> Get(int repositoryId, string reference);
|
||||||
@@ -50,7 +50,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// https://developer.github.com/v3/git/trees/#get-a-tree-recursively
|
/// https://developer.github.com/v3/git/trees/#get-a-tree-recursively
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="reference">The SHA that references the tree</param>
|
/// <param name="reference">The SHA that references the tree</param>
|
||||||
IObservable<TreeResponse> GetRecursive(int repositoryId, string reference);
|
IObservable<TreeResponse> GetRecursive(int repositoryId, string reference);
|
||||||
|
|
||||||
@@ -71,7 +71,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/git/trees/#create-a-tree
|
/// http://developer.github.com/v3/git/trees/#create-a-tree
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="newTree">The value of the new tree</param>
|
/// <param name="newTree">The value of the new tree</param>
|
||||||
IObservable<TreeResponse> Create(int repositoryId, NewTree newTree);
|
IObservable<TreeResponse> Create(int repositoryId, NewTree newTree);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -39,11 +39,11 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// View extended details of the <see cref="GpgKey"/> for the specified id.
|
/// View extended details of the <see cref="GpgKey"/> for the specified id.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="id">The ID of the GPG key</param>
|
/// <param name="id">The Id of the GPG key</param>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://developer.github.com/v3/users/gpg_keys/#get-a-single-gpg-key">API documentation</a> for more information.
|
/// See the <a href="https://developer.github.com/v3/users/gpg_keys/#get-a-single-gpg-key">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <returns>The <see cref="GpgKey"/> for the specified ID.</returns>
|
/// <returns>The <see cref="GpgKey"/> for the specified Id.</returns>
|
||||||
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get")]
|
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get")]
|
||||||
IObservable<GpgKey> Get(int id);
|
IObservable<GpgKey> Get(int id);
|
||||||
|
|
||||||
@@ -59,9 +59,9 @@ namespace Octokit.Reactive
|
|||||||
IObservable<GpgKey> Create(NewGpgKey newGpgKey);
|
IObservable<GpgKey> Create(NewGpgKey newGpgKey);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Deletes the GPG key for the specified ID.
|
/// Deletes the GPG key for the specified Id.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="id">The ID of the GPG key to delete.</param>
|
/// <param name="id">The Id of the GPG key to delete.</param>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://developer.github.com/v3/users/gpg_keys/#delete-a-gpg-key">API documentation</a> for more information.
|
/// See the <a href="https://developer.github.com/v3/users/gpg_keys/#delete-a-gpg-key">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
|
|||||||
@@ -60,7 +60,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// https://developer.github.com/v3/users/keys/#get-a-single-public-key
|
/// https://developer.github.com/v3/users/keys/#get-a-single-public-key
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="id">The ID of the SSH key</param>
|
/// <param name="id">The Id of the SSH key</param>
|
||||||
/// <returns>View extended details for a single public key.</returns>
|
/// <returns>View extended details for a single public key.</returns>
|
||||||
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get")]
|
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get")]
|
||||||
IObservable<PublicKey> Get(int id);
|
IObservable<PublicKey> Get(int id);
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Retrieves all of the watchers for the passed repository
|
/// Retrieves all of the watchers for the passed repository
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated</exception>
|
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated</exception>
|
||||||
IObservable<User> GetAllWatchers(int repositoryId);
|
IObservable<User> GetAllWatchers(int repositoryId);
|
||||||
|
|
||||||
@@ -38,7 +38,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Retrieves all of the watchers for the passed repository
|
/// Retrieves all of the watchers for the passed repository
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <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's response.</param>
|
/// <param name="options">Options for changing the API's response.</param>
|
||||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated</exception>
|
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated</exception>
|
||||||
IObservable<User> GetAllWatchers(int repositoryId, ApiOptions options);
|
IObservable<User> GetAllWatchers(int repositoryId, ApiOptions options);
|
||||||
@@ -83,7 +83,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Check if a repository is watched by the current authenticated user
|
/// Check if a repository is watched by the current authenticated user
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated</exception>
|
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated</exception>
|
||||||
IObservable<bool> CheckWatched(int repositoryId);
|
IObservable<bool> CheckWatched(int repositoryId);
|
||||||
|
|
||||||
@@ -98,7 +98,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Stars a repository for the authenticated user.
|
/// Stars a repository for the authenticated user.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="newSubscription">A <see cref="NewSubscription"/> instance describing the new subscription to create</param>
|
/// <param name="newSubscription">A <see cref="NewSubscription"/> instance describing the new subscription to create</param>
|
||||||
IObservable<Subscription> WatchRepo(int repositoryId, NewSubscription newSubscription);
|
IObservable<Subscription> WatchRepo(int repositoryId, NewSubscription newSubscription);
|
||||||
|
|
||||||
@@ -114,7 +114,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Unstars a repository for the authenticated user.
|
/// Unstars a repository for the authenticated user.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
[SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Unwatch",
|
[SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Unwatch",
|
||||||
Justification = "Unwatch is consistent with the GitHub website")]
|
Justification = "Unwatch is consistent with the GitHub website")]
|
||||||
IObservable<bool> UnwatchRepo(int repositoryId);
|
IObservable<bool> UnwatchRepo(int repositoryId);
|
||||||
|
|||||||
@@ -39,7 +39,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets all the available assignees (owner + collaborators) to which issues may be assigned.
|
/// Gets all the available assignees (owner + collaborators) to which issues may be assigned.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
public IObservable<User> GetAllForRepository(int repositoryId)
|
public IObservable<User> GetAllForRepository(int repositoryId)
|
||||||
{
|
{
|
||||||
return GetAllForRepository(repositoryId, ApiOptions.None);
|
return GetAllForRepository(repositoryId, ApiOptions.None);
|
||||||
@@ -63,7 +63,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets all the available assignees (owner + collaborators) to which issues may be assigned.
|
/// Gets all the available assignees (owner + collaborators) to which issues may be assigned.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="options">The options to change API's behaviour.</param>
|
/// <param name="options">The options to change API's behaviour.</param>
|
||||||
public IObservable<User> GetAllForRepository(int repositoryId, ApiOptions options)
|
public IObservable<User> GetAllForRepository(int repositoryId, ApiOptions options)
|
||||||
{
|
{
|
||||||
@@ -90,7 +90,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Checks to see if a user is an assignee for a repository.
|
/// Checks to see if a user is an assignee for a repository.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="assignee">Username of the prospective assignee</param>
|
/// <param name="assignee">Username of the prospective assignee</param>
|
||||||
public IObservable<bool> CheckAssignee(int repositoryId, string assignee)
|
public IObservable<bool> CheckAssignee(int repositoryId, string assignee)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -119,7 +119,7 @@ namespace Octokit.Reactive
|
|||||||
/// This method requires authentication.
|
/// This method requires authentication.
|
||||||
/// See the <a href="http://developer.github.com/v3/oauth/#get-or-create-an-authorization-for-a-specific-app">API documentation</a> for more information.
|
/// See the <a href="http://developer.github.com/v3/oauth/#get-or-create-an-authorization-for-a-specific-app">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="clientId">Client ID of the OAuth application for the token</param>
|
/// <param name="clientId">Client Id of the OAuth application for the token</param>
|
||||||
/// <param name="clientSecret">The client secret</param>
|
/// <param name="clientSecret">The client secret</param>
|
||||||
/// <param name="newAuthorization">Describes the new authorization to create</param>
|
/// <param name="newAuthorization">Describes the new authorization to create</param>
|
||||||
/// <exception cref="AuthorizationException">
|
/// <exception cref="AuthorizationException">
|
||||||
@@ -150,7 +150,7 @@ namespace Octokit.Reactive
|
|||||||
/// This method requires authentication.
|
/// This method requires authentication.
|
||||||
/// See the <a href="http://developer.github.com/v3/oauth/#get-or-create-an-authorization-for-a-specific-app">API documentation</a> for more information.
|
/// See the <a href="http://developer.github.com/v3/oauth/#get-or-create-an-authorization-for-a-specific-app">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="clientId">Client ID of the OAuth application for the token</param>
|
/// <param name="clientId">Client Id of the OAuth application for the token</param>
|
||||||
/// <param name="clientSecret">The client secret</param>
|
/// <param name="clientSecret">The client secret</param>
|
||||||
/// <param name="twoFactorAuthenticationCode">The two-factor authentication code in response to the current user's previous challenge</param>
|
/// <param name="twoFactorAuthenticationCode">The two-factor authentication code in response to the current user's previous challenge</param>
|
||||||
/// <param name="newAuthorization">Describes the new authorization to create</param>
|
/// <param name="newAuthorization">Describes the new authorization to create</param>
|
||||||
@@ -185,7 +185,7 @@ namespace Octokit.Reactive
|
|||||||
/// See <a href="http://developer.github.com/v3/oauth/#get-or-create-an-authorization-for-a-specific-app">API
|
/// See <a href="http://developer.github.com/v3/oauth/#get-or-create-an-authorization-for-a-specific-app">API
|
||||||
/// documentation</a> for more details.
|
/// documentation</a> for more details.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="clientId">Client ID for the OAuth application that is requesting the token</param>
|
/// <param name="clientId">Client Id for the OAuth application that is requesting the token</param>
|
||||||
/// <param name="clientSecret">The client secret</param>
|
/// <param name="clientSecret">The client secret</param>
|
||||||
/// <param name="newAuthorization">Defines the scopes and metadata for the token</param>
|
/// <param name="newAuthorization">Defines the scopes and metadata for the token</param>
|
||||||
/// <exception cref="AuthorizationException">Thrown when the user does not have permission to make
|
/// <exception cref="AuthorizationException">Thrown when the user does not have permission to make
|
||||||
@@ -215,7 +215,7 @@ namespace Octokit.Reactive
|
|||||||
/// See <a href="http://developer.github.com/v3/oauth/#get-or-create-an-authorization-for-a-specific-app">API
|
/// See <a href="http://developer.github.com/v3/oauth/#get-or-create-an-authorization-for-a-specific-app">API
|
||||||
/// documentation</a> for more details.
|
/// documentation</a> for more details.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="clientId">Client ID for the OAuth application that is requesting the token</param>
|
/// <param name="clientId">Client Id for the OAuth application that is requesting the token</param>
|
||||||
/// <param name="clientSecret">The client secret</param>
|
/// <param name="clientSecret">The client secret</param>
|
||||||
/// <param name="newAuthorization">Defines the scopes and metadata for the token</param>
|
/// <param name="newAuthorization">Defines the scopes and metadata for the token</param>
|
||||||
/// <param name="twoFactorAuthenticationCode">The two-factor authentication code provided by the user</param>
|
/// <param name="twoFactorAuthenticationCode">The two-factor authentication code provided by the user</param>
|
||||||
@@ -251,7 +251,7 @@ namespace Octokit.Reactive
|
|||||||
/// This method requires authentication.
|
/// This method requires authentication.
|
||||||
/// See the <a href="https://developer.github.com/v3/oauth_authorizations/#check-an-authorization">API documentation</a> for more information.
|
/// See the <a href="https://developer.github.com/v3/oauth_authorizations/#check-an-authorization">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="clientId">Client ID of the OAuth application for the token</param>
|
/// <param name="clientId">Client Id of the OAuth application for the token</param>
|
||||||
/// <param name="accessToken">The OAuth token to check</param>
|
/// <param name="accessToken">The OAuth token to check</param>
|
||||||
/// <returns>The valid <see cref="ApplicationAuthorization"/>.</returns>
|
/// <returns>The valid <see cref="ApplicationAuthorization"/>.</returns>
|
||||||
public IObservable<ApplicationAuthorization> CheckApplicationAuthentication(string clientId, string accessToken)
|
public IObservable<ApplicationAuthorization> CheckApplicationAuthentication(string clientId, string accessToken)
|
||||||
@@ -340,7 +340,7 @@ namespace Octokit.Reactive
|
|||||||
/// See the <a href="http://developer.github.com/v3/oauth/#delete-an-authorization">API
|
/// See the <a href="http://developer.github.com/v3/oauth/#delete-an-authorization">API
|
||||||
/// documentation</a> for more details.
|
/// documentation</a> for more details.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="id">The system-wide ID of the authorization to delete</param>
|
/// <param name="id">The system-wide Id of the authorization to delete</param>
|
||||||
/// <exception cref="AuthorizationException">
|
/// <exception cref="AuthorizationException">
|
||||||
/// Thrown when the current user does not have permission to make the request.
|
/// Thrown when the current user does not have permission to make the request.
|
||||||
/// </exception>
|
/// </exception>
|
||||||
@@ -358,7 +358,7 @@ namespace Octokit.Reactive
|
|||||||
/// See the <a href="http://developer.github.com/v3/oauth/#delete-an-authorization">API
|
/// See the <a href="http://developer.github.com/v3/oauth/#delete-an-authorization">API
|
||||||
/// documentation</a> for more details.
|
/// documentation</a> for more details.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="id">The system-wide ID of the authorization to delete</param>
|
/// <param name="id">The system-wide Id of the authorization to delete</param>
|
||||||
/// <param name="twoFactorAuthenticationCode">Two factor authorization code</param>
|
/// <param name="twoFactorAuthenticationCode">Two factor authorization code</param>
|
||||||
/// <exception cref="AuthorizationException">
|
/// <exception cref="AuthorizationException">
|
||||||
/// Thrown when the current user does not have permission to make the request.
|
/// Thrown when the current user does not have permission to make the request.
|
||||||
|
|||||||
@@ -44,7 +44,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/git/blobs/#get-a-blob
|
/// http://developer.github.com/v3/git/blobs/#get-a-blob
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="reference">The SHA of the blob</param>
|
/// <param name="reference">The SHA of the blob</param>
|
||||||
public IObservable<Blob> Get(int repositoryId, string reference)
|
public IObservable<Blob> Get(int repositoryId, string reference)
|
||||||
{
|
{
|
||||||
@@ -77,7 +77,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/git/blobs/#create-a-blob
|
/// http://developer.github.com/v3/git/blobs/#create-a-blob
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="newBlob">The new Blob</param>
|
/// <param name="newBlob">The new Blob</param>
|
||||||
public IObservable<BlobReference> Create(int repositoryId, NewBlob newBlob)
|
public IObservable<BlobReference> Create(int repositoryId, NewBlob newBlob)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -45,7 +45,7 @@ namespace Octokit.Reactive
|
|||||||
/// Creates a reaction for a specified Commit Comment
|
/// Creates a reaction for a specified Commit Comment
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://developer.github.com/v3/reactions/#create-reaction-for-a-commit-comment</remarks>
|
/// <remarks>https://developer.github.com/v3/reactions/#create-reaction-for-a-commit-comment</remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="number">The comment id</param>
|
/// <param name="number">The comment id</param>
|
||||||
/// <param name="reaction">The reaction to create </param>
|
/// <param name="reaction">The reaction to create </param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
|
|||||||
@@ -45,7 +45,7 @@ namespace Octokit.Reactive
|
|||||||
/// a tag name.
|
/// a tag name.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>Only users with pull access can see this.</remarks>
|
/// <remarks>Only users with pull access can see this.</remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="reference">The reference (SHA, branch name, or tag name) to list commits for</param>
|
/// <param name="reference">The reference (SHA, branch name, or tag name) to list commits for</param>
|
||||||
public IObservable<CommitStatus> GetAll(int repositoryId, string reference)
|
public IObservable<CommitStatus> GetAll(int repositoryId, string reference)
|
||||||
{
|
{
|
||||||
@@ -78,7 +78,7 @@ namespace Octokit.Reactive
|
|||||||
/// a tag name.
|
/// a tag name.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>Only users with pull access can see this.</remarks>
|
/// <remarks>Only users with pull access can see this.</remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="reference">The reference (SHA, branch name, or tag name) to list commits for</param>
|
/// <param name="reference">The reference (SHA, branch name, or tag name) to list commits for</param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
public IObservable<CommitStatus> GetAll(int repositoryId, string reference, ApiOptions options)
|
public IObservable<CommitStatus> GetAll(int repositoryId, string reference, ApiOptions options)
|
||||||
@@ -111,7 +111,7 @@ namespace Octokit.Reactive
|
|||||||
/// a tag name.
|
/// a tag name.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>Only users with pull access can see this.</remarks>
|
/// <remarks>Only users with pull access can see this.</remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="reference">The reference (SHA, branch name, or tag name) to list commits for</param>
|
/// <param name="reference">The reference (SHA, branch name, or tag name) to list commits for</param>
|
||||||
public IObservable<CombinedCommitStatus> GetCombined(int repositoryId, string reference)
|
public IObservable<CombinedCommitStatus> GetCombined(int repositoryId, string reference)
|
||||||
{
|
{
|
||||||
@@ -140,7 +140,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Creates a commit status for the specified ref.
|
/// Creates a commit status for the specified ref.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="reference">The reference (SHA, branch name, or tag name) to list commits for</param>
|
/// <param name="reference">The reference (SHA, branch name, or tag name) to list commits for</param>
|
||||||
/// <param name="newCommitStatus">The commit status to create</param>
|
/// <param name="newCommitStatus">The commit status to create</param>
|
||||||
public IObservable<CommitStatus> Create(int repositoryId, string reference, NewCommitStatus newCommitStatus)
|
public IObservable<CommitStatus> Create(int repositoryId, string reference, NewCommitStatus newCommitStatus)
|
||||||
|
|||||||
@@ -44,7 +44,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/git/commits/#get-a-commit
|
/// http://developer.github.com/v3/git/commits/#get-a-commit
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="reference">Tha sha reference of the commit</param>
|
/// <param name="reference">Tha sha reference of the commit</param>
|
||||||
public IObservable<Commit> Get(int repositoryId, string reference)
|
public IObservable<Commit> Get(int repositoryId, string reference)
|
||||||
{
|
{
|
||||||
@@ -77,7 +77,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/git/commits/#create-a-commit
|
/// http://developer.github.com/v3/git/commits/#create-a-commit
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="commit">The commit to create</param>
|
/// <param name="commit">The commit to create</param>
|
||||||
public IObservable<Commit> Create(int repositoryId, NewCommit commit)
|
public IObservable<Commit> Create(int repositoryId, NewCommit commit)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -49,7 +49,7 @@ namespace Octokit.Reactive.Clients
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/repos/deployments/#list-deployment-statuses
|
/// http://developer.github.com/v3/repos/deployments/#list-deployment-statuses
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository.</param>
|
/// <param name="repositoryId">The Id of the repository.</param>
|
||||||
/// <param name="deploymentId">The id of the deployment.</param>
|
/// <param name="deploymentId">The id of the deployment.</param>
|
||||||
public IObservable<DeploymentStatus> GetAll(int repositoryId, int deploymentId)
|
public IObservable<DeploymentStatus> GetAll(int repositoryId, int deploymentId)
|
||||||
{
|
{
|
||||||
@@ -84,7 +84,7 @@ namespace Octokit.Reactive.Clients
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/repos/deployments/#list-deployment-statuses
|
/// http://developer.github.com/v3/repos/deployments/#list-deployment-statuses
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository.</param>
|
/// <param name="repositoryId">The Id of the repository.</param>
|
||||||
/// <param name="deploymentId">The id of the deployment.</param>
|
/// <param name="deploymentId">The id of the deployment.</param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
public IObservable<DeploymentStatus> GetAll(int repositoryId, int deploymentId, ApiOptions options)
|
public IObservable<DeploymentStatus> GetAll(int repositoryId, int deploymentId, ApiOptions options)
|
||||||
@@ -122,7 +122,7 @@ namespace Octokit.Reactive.Clients
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/repos/deployments/#create-a-deployment-status
|
/// http://developer.github.com/v3/repos/deployments/#create-a-deployment-status
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository.</param>
|
/// <param name="repositoryId">The Id of the repository.</param>
|
||||||
/// <param name="deploymentId">The id of the deployment.</param>
|
/// <param name="deploymentId">The id of the deployment.</param>
|
||||||
/// <param name="newDeploymentStatus">The new deployment status to create.</param>
|
/// <param name="newDeploymentStatus">The new deployment status to create.</param>
|
||||||
public IObservable<DeploymentStatus> Create(int repositoryId, int deploymentId, NewDeploymentStatus newDeploymentStatus)
|
public IObservable<DeploymentStatus> Create(int repositoryId, int deploymentId, NewDeploymentStatus newDeploymentStatus)
|
||||||
|
|||||||
@@ -50,7 +50,7 @@ namespace Octokit.Reactive.Clients
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/repos/deployments/#list-deployments
|
/// http://developer.github.com/v3/repos/deployments/#list-deployments
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
public IObservable<Deployment> GetAll(int repositoryId)
|
public IObservable<Deployment> GetAll(int repositoryId)
|
||||||
{
|
{
|
||||||
return GetAll(repositoryId, ApiOptions.None);
|
return GetAll(repositoryId, ApiOptions.None);
|
||||||
@@ -83,7 +83,7 @@ namespace Octokit.Reactive.Clients
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/repos/deployments/#list-deployments
|
/// http://developer.github.com/v3/repos/deployments/#list-deployments
|
||||||
/// </remarks>
|
/// </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>
|
||||||
public IObservable<Deployment> GetAll(int repositoryId, ApiOptions options)
|
public IObservable<Deployment> GetAll(int repositoryId, ApiOptions options)
|
||||||
{
|
{
|
||||||
@@ -117,7 +117,7 @@ namespace Octokit.Reactive.Clients
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/repos/deployments/#create-a-deployment
|
/// http://developer.github.com/v3/repos/deployments/#create-a-deployment
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="newDeployment">A <see cref="NewDeployment"/> instance describing the new deployment to create</param>
|
/// <param name="newDeployment">A <see cref="NewDeployment"/> instance describing the new deployment to create</param>
|
||||||
public IObservable<Deployment> Create(int repositoryId, NewDeployment newDeployment)
|
public IObservable<Deployment> Create(int repositoryId, NewDeployment newDeployment)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -67,7 +67,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/activity/events/#list-issue-events-for-a-repository
|
/// http://developer.github.com/v3/activity/events/#list-issue-events-for-a-repository
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
public IObservable<Activity> GetAllForRepository(int repositoryId)
|
public IObservable<Activity> GetAllForRepository(int repositoryId)
|
||||||
{
|
{
|
||||||
return GetAllForRepository(repositoryId, ApiOptions.None);
|
return GetAllForRepository(repositoryId, ApiOptions.None);
|
||||||
@@ -97,7 +97,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/activity/events/#list-issue-events-for-a-repository
|
/// http://developer.github.com/v3/activity/events/#list-issue-events-for-a-repository
|
||||||
/// </remarks>
|
/// </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>
|
||||||
public IObservable<Activity> GetAllForRepository(int repositoryId, ApiOptions options)
|
public IObservable<Activity> GetAllForRepository(int repositoryId, ApiOptions options)
|
||||||
{
|
{
|
||||||
@@ -128,7 +128,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/activity/events/#list-issue-events-for-a-repository
|
/// http://developer.github.com/v3/activity/events/#list-issue-events-for-a-repository
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
public IObservable<Activity> GetAllIssuesForRepository(int repositoryId)
|
public IObservable<Activity> GetAllIssuesForRepository(int repositoryId)
|
||||||
{
|
{
|
||||||
return GetAllIssuesForRepository(repositoryId, ApiOptions.None);
|
return GetAllIssuesForRepository(repositoryId, ApiOptions.None);
|
||||||
@@ -158,7 +158,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/activity/events/#list-issue-events-for-a-repository
|
/// http://developer.github.com/v3/activity/events/#list-issue-events-for-a-repository
|
||||||
/// </remarks>
|
/// </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>
|
||||||
public IObservable<Activity> GetAllIssuesForRepository(int repositoryId, ApiOptions options)
|
public IObservable<Activity> GetAllIssuesForRepository(int repositoryId, ApiOptions options)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -44,7 +44,7 @@ namespace Octokit.Reactive
|
|||||||
/// Creates a reaction for a specified Issue Comment
|
/// Creates a reaction for a specified Issue Comment
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://developer.github.com/v3/reactions/#create-reaction-for-an-issue-comment</remarks>
|
/// <remarks>https://developer.github.com/v3/reactions/#create-reaction-for-an-issue-comment</remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="number">The comment id</param>
|
/// <param name="number">The comment id</param>
|
||||||
/// <param name="reaction">The reaction to create </param>
|
/// <param name="reaction">The reaction to create </param>
|
||||||
public IObservable<Reaction> Create(int repositoryId, int number, NewReaction reaction)
|
public IObservable<Reaction> Create(int repositoryId, int number, NewReaction reaction)
|
||||||
@@ -73,7 +73,7 @@ namespace Octokit.Reactive
|
|||||||
/// List reactions for a specified Issue Comment
|
/// List reactions for a specified Issue Comment
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-an-issue-comment</remarks>
|
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-an-issue-comment</remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="number">The comment id</param>
|
/// <param name="number">The comment id</param>
|
||||||
public IObservable<Reaction> GetAll(int repositoryId, int number)
|
public IObservable<Reaction> GetAll(int repositoryId, int number)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -43,7 +43,7 @@ namespace Octokit.Reactive
|
|||||||
/// Gets a single Issue Comment by id.
|
/// Gets a single Issue Comment by id.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>http://developer.github.com/v3/issues/comments/#get-a-single-comment</remarks>
|
/// <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>
|
/// <param name="id">The issue comment id</param>
|
||||||
public IObservable<IssueComment> Get(int repositoryId, int id)
|
public IObservable<IssueComment> Get(int repositoryId, int id)
|
||||||
{
|
{
|
||||||
@@ -68,7 +68,7 @@ namespace Octokit.Reactive
|
|||||||
/// Gets Issue Comments for a repository.
|
/// Gets Issue Comments for a repository.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>http://developer.github.com/v3/issues/comments/#list-comments-in-a-repository</remarks>
|
/// <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)
|
public IObservable<IssueComment> GetAllForRepository(int repositoryId)
|
||||||
{
|
{
|
||||||
return GetAllForRepository(repositoryId, ApiOptions.None);
|
return GetAllForRepository(repositoryId, ApiOptions.None);
|
||||||
@@ -94,7 +94,7 @@ namespace Octokit.Reactive
|
|||||||
/// Gets Issue Comments for a repository.
|
/// Gets Issue Comments for a repository.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>http://developer.github.com/v3/issues/comments/#list-comments-in-a-repository</remarks>
|
/// <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>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
public IObservable<IssueComment> GetAllForRepository(int repositoryId, ApiOptions options)
|
public IObservable<IssueComment> GetAllForRepository(int repositoryId, ApiOptions options)
|
||||||
{
|
{
|
||||||
@@ -122,7 +122,7 @@ namespace Octokit.Reactive
|
|||||||
/// Gets Issue Comments for a specified Issue.
|
/// Gets Issue Comments for a specified Issue.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>http://developer.github.com/v3/issues/comments/#list-comments-on-an-issue</remarks>
|
/// <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="number">The issue number</param>
|
||||||
public IObservable<IssueComment> GetAllForIssue(int repositoryId, int number)
|
public IObservable<IssueComment> GetAllForIssue(int repositoryId, int number)
|
||||||
{
|
{
|
||||||
@@ -150,7 +150,7 @@ namespace Octokit.Reactive
|
|||||||
/// Gets Issue Comments for a specified Issue.
|
/// Gets Issue Comments for a specified Issue.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>http://developer.github.com/v3/issues/comments/#list-comments-on-an-issue</remarks>
|
/// <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="number">The issue number</param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
public IObservable<IssueComment> GetAllForIssue(int repositoryId, int number, ApiOptions options)
|
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.
|
/// Creates a new Issue Comment for a specified Issue.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>http://developer.github.com/v3/issues/comments/#create-a-comment</remarks>
|
/// <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="number">The number of the issue</param>
|
||||||
/// <param name="newComment">The text of the new comment</param>
|
/// <param name="newComment">The text of the new comment</param>
|
||||||
public IObservable<IssueComment> Create(int repositoryId, int number, string newComment)
|
public IObservable<IssueComment> Create(int repositoryId, int number, string newComment)
|
||||||
@@ -212,7 +212,7 @@ namespace Octokit.Reactive
|
|||||||
/// Updates a specified Issue Comment.
|
/// Updates a specified Issue Comment.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>http://developer.github.com/v3/issues/comments/#edit-a-comment</remarks>
|
/// <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="id">The comment id</param>
|
||||||
/// <param name="commentUpdate">The modified comment</param>
|
/// <param name="commentUpdate">The modified comment</param>
|
||||||
public IObservable<IssueComment> Update(int repositoryId, int id, string commentUpdate)
|
public IObservable<IssueComment> Update(int repositoryId, int id, string commentUpdate)
|
||||||
@@ -241,7 +241,7 @@ namespace Octokit.Reactive
|
|||||||
/// Deletes the specified Issue Comment
|
/// Deletes the specified Issue Comment
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>http://developer.github.com/v3/issues/comments/#delete-a-comment</remarks>
|
/// <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>
|
/// <param name="id">The comment id</param>
|
||||||
public IObservable<Unit> Delete(int repositoryId, int id)
|
public IObservable<Unit> Delete(int repositoryId, int id)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -42,7 +42,7 @@ namespace Octokit.Reactive
|
|||||||
/// List reactions for a specified Issue.
|
/// List reactions for a specified Issue.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-an-issue</remarks>
|
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-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 id</param>
|
/// <param name="number">The issue id</param>
|
||||||
public IObservable<Reaction> GetAll(int repositoryId, int number)
|
public IObservable<Reaction> GetAll(int repositoryId, int number)
|
||||||
{
|
{
|
||||||
@@ -70,7 +70,7 @@ namespace Octokit.Reactive
|
|||||||
/// Creates a reaction for a specified Issue.
|
/// Creates a reaction for a specified Issue.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://developer.github.com/v3/reactions/#create-reaction-for-an-issue</remarks>
|
/// <remarks>https://developer.github.com/v3/reactions/#create-reaction-for-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 id</param>
|
/// <param name="number">The issue id</param>
|
||||||
/// <param name="reaction">The reaction to create </param>
|
/// <param name="reaction">The reaction to create </param>
|
||||||
public IObservable<Reaction> Create(int repositoryId, int number, NewReaction reaction)
|
public IObservable<Reaction> Create(int repositoryId, int number, NewReaction reaction)
|
||||||
|
|||||||
@@ -79,7 +79,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/issues/#get-a-single-issue
|
/// http://developer.github.com/v3/issues/#get-a-single-issue
|
||||||
/// </remarks>
|
/// </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="number">The issue number</param>
|
||||||
public IObservable<Issue> Get(int repositoryId, int number)
|
public IObservable<Issue> Get(int repositoryId, int number)
|
||||||
{
|
{
|
||||||
@@ -292,7 +292,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/issues/#list-issues-for-a-repository
|
/// http://developer.github.com/v3/issues/#list-issues-for-a-repository
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
public IObservable<Issue> GetAllForRepository(int repositoryId)
|
public IObservable<Issue> GetAllForRepository(int repositoryId)
|
||||||
{
|
{
|
||||||
return GetAllForRepository(repositoryId, ApiOptions.None);
|
return GetAllForRepository(repositoryId, ApiOptions.None);
|
||||||
@@ -322,7 +322,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/issues/#list-issues-for-a-repository
|
/// http://developer.github.com/v3/issues/#list-issues-for-a-repository
|
||||||
/// </remarks>
|
/// </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>
|
||||||
public IObservable<Issue> GetAllForRepository(int repositoryId, ApiOptions options)
|
public IObservable<Issue> GetAllForRepository(int repositoryId, ApiOptions options)
|
||||||
{
|
{
|
||||||
@@ -355,7 +355,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/issues/#list-issues-for-a-repository
|
/// http://developer.github.com/v3/issues/#list-issues-for-a-repository
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="request">Used to filter and sort the list of issues returned</param>
|
/// <param name="request">Used to filter and sort the list of issues returned</param>
|
||||||
public IObservable<Issue> GetAllForRepository(int repositoryId, RepositoryIssueRequest request)
|
public IObservable<Issue> GetAllForRepository(int repositoryId, RepositoryIssueRequest request)
|
||||||
{
|
{
|
||||||
@@ -390,7 +390,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/issues/#list-issues-for-a-repository
|
/// http://developer.github.com/v3/issues/#list-issues-for-a-repository
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="request">Used to filter and sort the list of issues returned</param>
|
/// <param name="request">Used to filter and sort the list of issues returned</param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
public IObservable<Issue> GetAllForRepository(int repositoryId, RepositoryIssueRequest request, ApiOptions options)
|
public IObservable<Issue> GetAllForRepository(int repositoryId, RepositoryIssueRequest request, ApiOptions options)
|
||||||
@@ -423,7 +423,7 @@ namespace Octokit.Reactive
|
|||||||
/// issue.
|
/// issue.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>http://developer.github.com/v3/issues/#create-an-issue</remarks>
|
/// <remarks>http://developer.github.com/v3/issues/#create-an-issue</remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="newIssue">A <see cref="NewIssue"/> instance describing the new issue to create</param>
|
/// <param name="newIssue">A <see cref="NewIssue"/> instance describing the new issue to create</param>
|
||||||
public IObservable<Issue> Create(int repositoryId, NewIssue newIssue)
|
public IObservable<Issue> Create(int repositoryId, NewIssue newIssue)
|
||||||
{
|
{
|
||||||
@@ -456,7 +456,7 @@ namespace Octokit.Reactive
|
|||||||
/// issue.
|
/// issue.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>http://developer.github.com/v3/issues/#create-an-issue</remarks>
|
/// <remarks>http://developer.github.com/v3/issues/#create-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="number">The issue number</param>
|
||||||
/// <param name="issueUpdate">An <see cref="IssueUpdate"/> instance describing the changes to make to the issue
|
/// <param name="issueUpdate">An <see cref="IssueUpdate"/> instance describing the changes to make to the issue
|
||||||
/// </param>
|
/// </param>
|
||||||
@@ -486,7 +486,7 @@ namespace Octokit.Reactive
|
|||||||
/// Locks an issue for the specified repository. Issue owners and users with push access can lock an issue.
|
/// Locks an issue for the specified repository. Issue owners and users with push access can lock an issue.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://developer.github.com/v3/issues/#lock-an-issue</remarks>
|
/// <remarks>https://developer.github.com/v3/issues/#lock-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="number">The issue number</param>
|
||||||
public IObservable<Unit> Lock(int repositoryId, int number)
|
public IObservable<Unit> Lock(int repositoryId, int number)
|
||||||
{
|
{
|
||||||
@@ -512,7 +512,7 @@ namespace Octokit.Reactive
|
|||||||
/// Unlocks an issue for the specified repository. Issue owners and users with push access can unlock an issue.
|
/// Unlocks an issue for the specified repository. Issue owners and users with push access can unlock an issue.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://developer.github.com/v3/issues/#unlock-an-issue</remarks>
|
/// <remarks>https://developer.github.com/v3/issues/#unlock-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="number">The issue number</param>
|
||||||
public IObservable<Unit> Unlock(int repositoryId, int number)
|
public IObservable<Unit> Unlock(int repositoryId, int number)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -46,7 +46,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/issues/events/#list-events-for-an-issue
|
/// http://developer.github.com/v3/issues/events/#list-events-for-an-issue
|
||||||
/// </remarks>
|
/// </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="number">The issue number</param>
|
||||||
public IObservable<EventInfo> GetAllForIssue(int repositoryId, int number)
|
public IObservable<EventInfo> GetAllForIssue(int repositoryId, int number)
|
||||||
{
|
{
|
||||||
@@ -78,7 +78,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/issues/events/#list-events-for-an-issue
|
/// http://developer.github.com/v3/issues/events/#list-events-for-an-issue
|
||||||
/// </remarks>
|
/// </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="number">The issue number</param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
public IObservable<EventInfo> GetAllForIssue(int repositoryId, int number, ApiOptions options)
|
public IObservable<EventInfo> GetAllForIssue(int repositoryId, int number, ApiOptions options)
|
||||||
@@ -110,7 +110,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/issues/events/#list-events-for-a-repository
|
/// http://developer.github.com/v3/issues/events/#list-events-for-a-repository
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
public IObservable<IssueEvent> GetAllForRepository(int repositoryId)
|
public IObservable<IssueEvent> GetAllForRepository(int repositoryId)
|
||||||
{
|
{
|
||||||
return GetAllForRepository(repositoryId, ApiOptions.None);
|
return GetAllForRepository(repositoryId, ApiOptions.None);
|
||||||
@@ -140,7 +140,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/issues/events/#list-events-for-a-repository
|
/// http://developer.github.com/v3/issues/events/#list-events-for-a-repository
|
||||||
/// </remarks>
|
/// </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>
|
||||||
public IObservable<IssueEvent> GetAllForRepository(int repositoryId, ApiOptions options)
|
public IObservable<IssueEvent> GetAllForRepository(int repositoryId, ApiOptions options)
|
||||||
{
|
{
|
||||||
@@ -172,7 +172,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/issues/events/#get-a-single-event
|
/// http://developer.github.com/v3/issues/events/#get-a-single-event
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="number">The event id</param>
|
/// <param name="number">The event id</param>
|
||||||
public IObservable<IssueEvent> Get(int repositoryId, int number)
|
public IObservable<IssueEvent> Get(int repositoryId, int number)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -48,7 +48,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/issues/labels/#list-labels-on-an-issue">API documentation</a> for more information.
|
/// See the <a href="http://developer.github.com/v3/issues/labels/#list-labels-on-an-issue">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </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="number">The number of the issue</param>
|
||||||
public IObservable<Label> GetAllForIssue(int repositoryId, int number)
|
public IObservable<Label> GetAllForIssue(int repositoryId, int number)
|
||||||
{
|
{
|
||||||
@@ -80,7 +80,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/issues/labels/#list-labels-on-an-issue">API documentation</a> for more information.
|
/// See the <a href="http://developer.github.com/v3/issues/labels/#list-labels-on-an-issue">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </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="number">The number of the issue</param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
public IObservable<Label> GetAllForIssue(int repositoryId, int number, ApiOptions options)
|
public IObservable<Label> GetAllForIssue(int repositoryId, int number, ApiOptions options)
|
||||||
@@ -112,7 +112,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/issues/labels/#list-all-labels-for-this-repository">API documentation</a> for more information.
|
/// See the <a href="http://developer.github.com/v3/issues/labels/#list-all-labels-for-this-repository">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
public IObservable<Label> GetAllForRepository(int repositoryId)
|
public IObservable<Label> GetAllForRepository(int repositoryId)
|
||||||
{
|
{
|
||||||
return GetAllForRepository(repositoryId, ApiOptions.None);
|
return GetAllForRepository(repositoryId, ApiOptions.None);
|
||||||
@@ -142,7 +142,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/issues/labels/#list-all-labels-for-this-repository">API documentation</a> for more information.
|
/// See the <a href="http://developer.github.com/v3/issues/labels/#list-all-labels-for-this-repository">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </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>
|
||||||
public IObservable<Label> GetAllForRepository(int repositoryId, ApiOptions options)
|
public IObservable<Label> GetAllForRepository(int repositoryId, ApiOptions options)
|
||||||
{
|
{
|
||||||
@@ -174,7 +174,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/issues/labels/#get-labels-for-every-issue-in-a-milestone">API documentation</a> for more information.
|
/// See the <a href="http://developer.github.com/v3/issues/labels/#get-labels-for-every-issue-in-a-milestone">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </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 milestone</param>
|
/// <param name="number">The number of the milestone</param>
|
||||||
public IObservable<Label> GetAllForMilestone(int repositoryId, int number)
|
public IObservable<Label> GetAllForMilestone(int repositoryId, int number)
|
||||||
{
|
{
|
||||||
@@ -206,7 +206,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/issues/labels/#get-labels-for-every-issue-in-a-milestone">API documentation</a> for more information.
|
/// See the <a href="http://developer.github.com/v3/issues/labels/#get-labels-for-every-issue-in-a-milestone">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </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 milestone</param>
|
/// <param name="number">The number of the milestone</param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
public IObservable<Label> GetAllForMilestone(int repositoryId, int number, ApiOptions options)
|
public IObservable<Label> GetAllForMilestone(int repositoryId, int number, ApiOptions options)
|
||||||
@@ -240,7 +240,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/issues/labels/#get-a-single-label">API documentation</a> for more information.
|
/// See the <a href="http://developer.github.com/v3/issues/labels/#get-a-single-label">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="labelName">The name of the label</param>
|
/// <param name="labelName">The name of the label</param>
|
||||||
public IObservable<Label> Get(int repositoryId, string labelName)
|
public IObservable<Label> Get(int repositoryId, string labelName)
|
||||||
{
|
{
|
||||||
@@ -273,7 +273,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/issues/labels/#delete-a-label">API documentation</a> for more information.
|
/// See the <a href="http://developer.github.com/v3/issues/labels/#delete-a-label">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="labelName">The name of the label</param>
|
/// <param name="labelName">The name of the label</param>
|
||||||
public IObservable<Unit> Delete(int repositoryId, string labelName)
|
public IObservable<Unit> Delete(int repositoryId, string labelName)
|
||||||
{
|
{
|
||||||
@@ -306,7 +306,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/issues/labels/#create-a-label">API documentation</a> for more information.
|
/// See the <a href="http://developer.github.com/v3/issues/labels/#create-a-label">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="newLabel">The data for the label to be created</param>
|
/// <param name="newLabel">The data for the label to be created</param>
|
||||||
public IObservable<Label> Create(int repositoryId, NewLabel newLabel)
|
public IObservable<Label> Create(int repositoryId, NewLabel newLabel)
|
||||||
{
|
{
|
||||||
@@ -341,7 +341,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/issues/labels/#update-a-label">API documentation</a> for more information.
|
/// See the <a href="http://developer.github.com/v3/issues/labels/#update-a-label">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="labelName">The name of the label</param>
|
/// <param name="labelName">The name of the label</param>
|
||||||
/// <param name="labelUpdate">The data for the label to be updated</param>
|
/// <param name="labelUpdate">The data for the label to be updated</param>
|
||||||
public IObservable<Label> Update(int repositoryId, string labelName, LabelUpdate labelUpdate)
|
public IObservable<Label> Update(int repositoryId, string labelName, LabelUpdate labelUpdate)
|
||||||
@@ -379,7 +379,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/issues/labels/#add-labels-to-an-issue">API documentation</a> for more information.
|
/// See the <a href="http://developer.github.com/v3/issues/labels/#add-labels-to-an-issue">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </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="number">The number of the issue</param>
|
||||||
/// <param name="labels">The names of the labels to add</param>
|
/// <param name="labels">The names of the labels to add</param>
|
||||||
public IObservable<Label> AddToIssue(int repositoryId, int number, string[] labels)
|
public IObservable<Label> AddToIssue(int repositoryId, int number, string[] labels)
|
||||||
@@ -416,7 +416,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/issues/labels/#remove-a-label-from-an-issue">API documentation</a> for more information.
|
/// See the <a href="http://developer.github.com/v3/issues/labels/#remove-a-label-from-an-issue">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </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="number">The number of the issue</param>
|
||||||
/// <param name="labelName">The name of the label to remove</param>
|
/// <param name="labelName">The name of the label to remove</param>
|
||||||
public IObservable<Unit> RemoveFromIssue(int repositoryId, int number, string labelName)
|
public IObservable<Unit> RemoveFromIssue(int repositoryId, int number, string labelName)
|
||||||
@@ -453,7 +453,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/issues/labels/#replace-all-labels-for-an-issue">API documentation</a> for more information.
|
/// See the <a href="http://developer.github.com/v3/issues/labels/#replace-all-labels-for-an-issue">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </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="number">The number of the issue</param>
|
||||||
/// <param name="labels">The names of the labels to set</param>
|
/// <param name="labels">The names of the labels to set</param>
|
||||||
public IObservable<Label> ReplaceAllForIssue(int repositoryId, int number, string[] labels)
|
public IObservable<Label> ReplaceAllForIssue(int repositoryId, int number, string[] labels)
|
||||||
@@ -488,7 +488,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/issues/labels/#remove-all-labels-from-an-issue">API documentation</a> for more information.
|
/// See the <a href="http://developer.github.com/v3/issues/labels/#remove-all-labels-from-an-issue">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </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="number">The number of the issue</param>
|
||||||
public IObservable<Unit> RemoveAllFromIssue(int repositoryId, int number)
|
public IObservable<Unit> RemoveAllFromIssue(int repositoryId, int number)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -38,7 +38,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/repos/merging/#perform-a-merge
|
/// http://developer.github.com/v3/repos/merging/#perform-a-merge
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="merge">The merge to create</param>
|
/// <param name="merge">The merge to create</param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public IObservable<Merge> Create(int repositoryId, NewMerge merge)
|
public IObservable<Merge> Create(int repositoryId, NewMerge merge)
|
||||||
|
|||||||
@@ -62,7 +62,7 @@ namespace Octokit.Reactive
|
|||||||
/// https://developer.github.com/v3/migration/migrations/#get-the-status-of-a-migration
|
/// https://developer.github.com/v3/migration/migrations/#get-the-status-of-a-migration
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="org">The organization which is migrating.</param>
|
/// <param name="org">The organization which is migrating.</param>
|
||||||
/// <param name="id">Migrations ID of the organization.</param>
|
/// <param name="id">Migrations Id of the organization.</param>
|
||||||
/// <returns>A <see cref="Migration"/> object representing the state of migration.</returns>
|
/// <returns>A <see cref="Migration"/> object representing the state of migration.</returns>
|
||||||
public IObservable<Migration> Get(string org, int id)
|
public IObservable<Migration> Get(string org, int id)
|
||||||
{
|
{
|
||||||
@@ -76,7 +76,7 @@ namespace Octokit.Reactive
|
|||||||
/// https://developer.github.com/v3/migration/migrations/#download-a-migration-archive
|
/// https://developer.github.com/v3/migration/migrations/#download-a-migration-archive
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="org">The organization of which the migration was.</param>
|
/// <param name="org">The organization of which the migration was.</param>
|
||||||
/// <param name="id">The ID of the migration.</param>
|
/// <param name="id">The Id of the migration.</param>
|
||||||
/// <returns>The binary contents of the archive as a byte array.</returns>
|
/// <returns>The binary contents of the archive as a byte array.</returns>
|
||||||
public IObservable<byte[]> GetArchive(string org, int id)
|
public IObservable<byte[]> GetArchive(string org, int id)
|
||||||
{
|
{
|
||||||
@@ -90,7 +90,7 @@ namespace Octokit.Reactive
|
|||||||
/// https://developer.github.com/v3/migration/migrations/#delete-a-migration-archive
|
/// https://developer.github.com/v3/migration/migrations/#delete-a-migration-archive
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="org">The organization of which the migration was.</param>
|
/// <param name="org">The organization of which the migration was.</param>
|
||||||
/// <param name="id">The ID of the migration.</param>
|
/// <param name="id">The Id of the migration.</param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public IObservable<Unit> DeleteArchive(string org, int id)
|
public IObservable<Unit> DeleteArchive(string org, int id)
|
||||||
{
|
{
|
||||||
@@ -104,7 +104,7 @@ namespace Octokit.Reactive
|
|||||||
/// https://developer.github.com/v3/migration/migrations/#unlock-a-repository
|
/// https://developer.github.com/v3/migration/migrations/#unlock-a-repository
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="org">The organization of which the migration was.</param>
|
/// <param name="org">The organization of which the migration was.</param>
|
||||||
/// <param name="id">The ID of the migration.</param>
|
/// <param name="id">The Id of the migration.</param>
|
||||||
/// <param name="repo">The repo to unlock.</param>
|
/// <param name="repo">The repo to unlock.</param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public IObservable<Unit> UnlockRepository(string org, int id, string repo)
|
public IObservable<Unit> UnlockRepository(string org, int id, string repo)
|
||||||
|
|||||||
@@ -74,7 +74,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/issues/milestones/#list-milestones-for-a-repository
|
/// http://developer.github.com/v3/issues/milestones/#list-milestones-for-a-repository
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public IObservable<Milestone> GetAllForRepository(int repositoryId)
|
public IObservable<Milestone> GetAllForRepository(int repositoryId)
|
||||||
{
|
{
|
||||||
@@ -106,7 +106,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/issues/milestones/#list-milestones-for-a-repository
|
/// http://developer.github.com/v3/issues/milestones/#list-milestones-for-a-repository
|
||||||
/// </remarks>
|
/// </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></returns>
|
/// <returns></returns>
|
||||||
public IObservable<Milestone> GetAllForRepository(int repositoryId, ApiOptions options)
|
public IObservable<Milestone> GetAllForRepository(int repositoryId, ApiOptions options)
|
||||||
@@ -141,7 +141,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/issues/milestones/#list-milestones-for-a-repository
|
/// http://developer.github.com/v3/issues/milestones/#list-milestones-for-a-repository
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="request">Used to filter and sort the list of Milestones returned</param>
|
/// <param name="request">Used to filter and sort the list of Milestones returned</param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public IObservable<Milestone> GetAllForRepository(int repositoryId, MilestoneRequest request)
|
public IObservable<Milestone> GetAllForRepository(int repositoryId, MilestoneRequest request)
|
||||||
@@ -179,7 +179,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/issues/milestones/#list-milestones-for-a-repository
|
/// http://developer.github.com/v3/issues/milestones/#list-milestones-for-a-repository
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="request">Used to filter and sort the list of Milestones returned</param>
|
/// <param name="request">Used to filter and sort the list of Milestones returned</param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
@@ -215,7 +215,7 @@ namespace Octokit.Reactive
|
|||||||
/// Milestone.
|
/// Milestone.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>http://developer.github.com/v3/issues/milestones/#create-a-milestone</remarks>
|
/// <remarks>http://developer.github.com/v3/issues/milestones/#create-a-milestone</remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="newMilestone">A <see cref="NewMilestone"/> instance describing the new Milestone to create</param>
|
/// <param name="newMilestone">A <see cref="NewMilestone"/> instance describing the new Milestone to create</param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public IObservable<Milestone> Create(int repositoryId, NewMilestone newMilestone)
|
public IObservable<Milestone> Create(int repositoryId, NewMilestone newMilestone)
|
||||||
@@ -250,7 +250,7 @@ namespace Octokit.Reactive
|
|||||||
/// Milestone.
|
/// Milestone.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>http://developer.github.com/v3/issues/milestones/#update-a-milestone</remarks>
|
/// <remarks>http://developer.github.com/v3/issues/milestones/#update-a-milestone</remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="number">The Milestone number</param>
|
/// <param name="number">The Milestone number</param>
|
||||||
/// <param name="milestoneUpdate">An <see cref="MilestoneUpdate"/> instance describing the changes to make to the Milestone
|
/// <param name="milestoneUpdate">An <see cref="MilestoneUpdate"/> instance describing the changes to make to the Milestone
|
||||||
/// </param>
|
/// </param>
|
||||||
@@ -284,7 +284,7 @@ namespace Octokit.Reactive
|
|||||||
/// Milestone.
|
/// Milestone.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>http://developer.github.com/v3/issues/milestones/#delete-a-milestone</remarks>
|
/// <remarks>http://developer.github.com/v3/issues/milestones/#delete-a-milestone</remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="number">The milestone number</param>
|
/// <param name="number">The milestone number</param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public IObservable<Unit> Delete(int repositoryId, int number)
|
public IObservable<Unit> Delete(int repositoryId, int number)
|
||||||
|
|||||||
@@ -62,7 +62,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Retrieves all of the <see cref="Notification"/>s for the current user specific to the specified repository.
|
/// Retrieves all of the <see cref="Notification"/>s for the current user specific to the specified repository.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository.</param>
|
/// <param name="repositoryId">The Id of the repository.</param>
|
||||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated.</exception>
|
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated.</exception>
|
||||||
public IObservable<Notification> GetAllForRepository(int repositoryId)
|
public IObservable<Notification> GetAllForRepository(int repositoryId)
|
||||||
{
|
{
|
||||||
@@ -88,7 +88,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Retrieves all of the <see cref="Notification"/>s for the current user specific to the specified repository.
|
/// Retrieves all of the <see cref="Notification"/>s for the current user specific to the specified repository.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <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>
|
||||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated.</exception>
|
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated.</exception>
|
||||||
public IObservable<Notification> GetAllForRepository(int repositoryId, ApiOptions options)
|
public IObservable<Notification> GetAllForRepository(int repositoryId, ApiOptions options)
|
||||||
@@ -143,7 +143,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Retrieves all of the <see cref="Notification"/>s for the current user specific to the specified repository.
|
/// Retrieves all of the <see cref="Notification"/>s for the current user specific to the specified repository.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository.</param>
|
/// <param name="repositoryId">The Id of the repository.</param>
|
||||||
/// <param name="request">Specifies the parameters to filter notifications by</param>
|
/// <param name="request">Specifies the parameters to filter notifications by</param>
|
||||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated.</exception>
|
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated.</exception>
|
||||||
public IObservable<Notification> GetAllForRepository(int repositoryId, NotificationsRequest request)
|
public IObservable<Notification> GetAllForRepository(int repositoryId, NotificationsRequest request)
|
||||||
@@ -174,7 +174,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Retrieves all of the <see cref="Notification"/>s for the current user specific to the specified repository.
|
/// Retrieves all of the <see cref="Notification"/>s for the current user specific to the specified repository.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository.</param>
|
/// <param name="repositoryId">The Id of the repository.</param>
|
||||||
/// <param name="request">Specifies the parameters to filter notifications by</param>
|
/// <param name="request">Specifies the parameters to filter notifications by</param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated.</exception>
|
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated.</exception>
|
||||||
@@ -224,7 +224,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Marks the notifications for a given repository as read.
|
/// Marks the notifications for a given repository as read.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <remarks>http://developer.github.com/v3/activity/notifications/#mark-notifications-as-read-in-a-repository</remarks>
|
/// <remarks>http://developer.github.com/v3/activity/notifications/#mark-notifications-as-read-in-a-repository</remarks>
|
||||||
public IObservable<Unit> MarkAsReadForRepository(int repositoryId)
|
public IObservable<Unit> MarkAsReadForRepository(int repositoryId)
|
||||||
{
|
{
|
||||||
@@ -250,7 +250,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Marks the notifications for a given repository as read.
|
/// Marks the notifications for a given repository as read.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="markAsReadRequest">The <see cref="MarkAsReadRequest"/> parameter which specifies which notifications to mark.</param>
|
/// <param name="markAsReadRequest">The <see cref="MarkAsReadRequest"/> parameter which specifies which notifications to mark.</param>
|
||||||
/// <remarks>http://developer.github.com/v3/activity/notifications/#mark-notifications-as-read-in-a-repository</remarks>
|
/// <remarks>http://developer.github.com/v3/activity/notifications/#mark-notifications-as-read-in-a-repository</remarks>
|
||||||
public IObservable<Unit> MarkAsReadForRepository(int repositoryId, MarkAsReadRequest markAsReadRequest)
|
public IObservable<Unit> MarkAsReadForRepository(int repositoryId, MarkAsReadRequest markAsReadRequest)
|
||||||
|
|||||||
@@ -42,7 +42,7 @@ namespace Octokit.Reactive
|
|||||||
/// Get all reactions for a specified Pull Request Review Comment.
|
/// Get all reactions for a specified Pull Request Review Comment.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-a-pull-request-review-comment</remarks>
|
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-a-pull-request-review-comment</remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="number">The comment id</param>
|
/// <param name="number">The comment id</param>
|
||||||
public IObservable<Reaction> GetAll(int repositoryId, int number)
|
public IObservable<Reaction> GetAll(int repositoryId, int number)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -43,7 +43,7 @@ namespace Octokit.Reactive
|
|||||||
/// Gets review comments for a specified pull request.
|
/// Gets review comments for a specified pull request.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <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>
|
||||||
public IObservable<PullRequestReviewComment> GetAll(int repositoryId, int number)
|
public IObservable<PullRequestReviewComment> GetAll(int repositoryId, int number)
|
||||||
{
|
{
|
||||||
@@ -71,7 +71,7 @@ namespace Octokit.Reactive
|
|||||||
/// Gets review comments for a specified pull request.
|
/// Gets review comments for a specified pull request.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <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>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
public IObservable<PullRequestReviewComment> GetAll(int repositoryId, int number, ApiOptions options)
|
public IObservable<PullRequestReviewComment> GetAll(int repositoryId, int number, ApiOptions options)
|
||||||
@@ -99,7 +99,7 @@ namespace Octokit.Reactive
|
|||||||
/// Gets a list of the pull request review comments in a specified repository.
|
/// Gets a list of the pull request review comments in a specified repository.
|
||||||
/// </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>
|
||||||
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);
|
||||||
@@ -125,7 +125,7 @@ namespace Octokit.Reactive
|
|||||||
/// Gets a list of the pull request review comments in a specified repository.
|
/// Gets a list of the pull request review comments in a specified repository.
|
||||||
/// </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>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
public IObservable<PullRequestReviewComment> GetAllForRepository(int repositoryId, ApiOptions options)
|
public IObservable<PullRequestReviewComment> GetAllForRepository(int repositoryId, ApiOptions options)
|
||||||
{
|
{
|
||||||
@@ -154,7 +154,7 @@ namespace Octokit.Reactive
|
|||||||
/// Gets a list of the pull request review comments in a specified repository.
|
/// Gets a list of the pull request review comments in a specified repository.
|
||||||
/// </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>
|
||||||
/// <param name="request">The sorting <see cref="PullRequestReviewCommentRequest">parameters</see></param>
|
/// <param name="request">The sorting <see cref="PullRequestReviewCommentRequest">parameters</see></param>
|
||||||
public IObservable<PullRequestReviewComment> GetAllForRepository(int repositoryId, PullRequestReviewCommentRequest request)
|
public IObservable<PullRequestReviewComment> GetAllForRepository(int repositoryId, PullRequestReviewCommentRequest request)
|
||||||
{
|
{
|
||||||
@@ -186,7 +186,7 @@ namespace Octokit.Reactive
|
|||||||
/// Gets a list of the pull request review comments in a specified repository.
|
/// Gets a list of the pull request review comments in a specified repository.
|
||||||
/// </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>
|
||||||
/// <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>
|
||||||
public IObservable<PullRequestReviewComment> GetAllForRepository(int repositoryId, PullRequestReviewCommentRequest request, ApiOptions options)
|
public IObservable<PullRequestReviewComment> GetAllForRepository(int repositoryId, PullRequestReviewCommentRequest request, ApiOptions options)
|
||||||
@@ -220,7 +220,7 @@ namespace Octokit.Reactive
|
|||||||
/// Gets a single pull request review comment by number.
|
/// Gets a single pull request review comment by number.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <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>
|
||||||
public IObservable<PullRequestReviewComment> GetComment(int repositoryId, int number)
|
public IObservable<PullRequestReviewComment> GetComment(int repositoryId, int number)
|
||||||
{
|
{
|
||||||
@@ -248,7 +248,7 @@ namespace Octokit.Reactive
|
|||||||
/// Creates a comment on a pull request review.
|
/// Creates a comment on a pull request review.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>http://developer.github.com/v3/pulls/comments/#create-a-comment</remarks>
|
/// <remarks>http://developer.github.com/v3/pulls/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 Pull Request number</param>
|
/// <param name="number">The Pull Request number</param>
|
||||||
/// <param name="comment">The comment</param>
|
/// <param name="comment">The comment</param>
|
||||||
public IObservable<PullRequestReviewComment> Create(int repositoryId, int number, PullRequestReviewCommentCreate comment)
|
public IObservable<PullRequestReviewComment> Create(int repositoryId, int number, PullRequestReviewCommentCreate comment)
|
||||||
@@ -279,7 +279,7 @@ namespace Octokit.Reactive
|
|||||||
/// Creates a comment on a pull request review as a reply to another comment.
|
/// Creates a comment on a pull request review as a reply to another comment.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>http://developer.github.com/v3/pulls/comments/#create-a-comment</remarks>
|
/// <remarks>http://developer.github.com/v3/pulls/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 pull request number</param>
|
/// <param name="number">The pull request number</param>
|
||||||
/// <param name="comment">The comment</param>
|
/// <param name="comment">The comment</param>
|
||||||
public IObservable<PullRequestReviewComment> CreateReply(int repositoryId, int number, PullRequestReviewCommentReplyCreate comment)
|
public IObservable<PullRequestReviewComment> CreateReply(int repositoryId, int number, PullRequestReviewCommentReplyCreate comment)
|
||||||
@@ -310,7 +310,7 @@ namespace Octokit.Reactive
|
|||||||
/// Edits a comment on a pull request review.
|
/// Edits a comment on a pull request review.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>http://developer.github.com/v3/pulls/comments/#edit-a-comment</remarks>
|
/// <remarks>http://developer.github.com/v3/pulls/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="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>
|
||||||
public IObservable<PullRequestReviewComment> Edit(int repositoryId, int number, PullRequestReviewCommentEdit comment)
|
public IObservable<PullRequestReviewComment> Edit(int repositoryId, int number, PullRequestReviewCommentEdit comment)
|
||||||
@@ -339,7 +339,7 @@ namespace Octokit.Reactive
|
|||||||
/// Deletes a comment on a pull request review.
|
/// Deletes a comment on a pull request review.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>http://developer.github.com/v3/pulls/comments/#delete-a-comment</remarks>
|
/// <remarks>http://developer.github.com/v3/pulls/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="number">The pull request review comment number</param>
|
/// <param name="number">The pull request review comment number</param>
|
||||||
public IObservable<Unit> Delete(int repositoryId, int number)
|
public IObservable<Unit> Delete(int repositoryId, int number)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -49,7 +49,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/pulls/#get-a-single-pull-request
|
/// http://developer.github.com/v3/pulls/#get-a-single-pull-request
|
||||||
/// </remarks>
|
/// </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 pull request</param>
|
/// <param name="number">The number of the pull request</param>
|
||||||
public IObservable<PullRequest> Get(int repositoryId, int number)
|
public IObservable<PullRequest> Get(int repositoryId, int number)
|
||||||
{
|
{
|
||||||
@@ -78,7 +78,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/pulls/#list-pull-requests
|
/// http://developer.github.com/v3/pulls/#list-pull-requests
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
public IObservable<PullRequest> GetAllForRepository(int repositoryId)
|
public IObservable<PullRequest> GetAllForRepository(int repositoryId)
|
||||||
{
|
{
|
||||||
return GetAllForRepository(repositoryId, ApiOptions.None);
|
return GetAllForRepository(repositoryId, ApiOptions.None);
|
||||||
@@ -108,7 +108,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/pulls/#list-pull-requests
|
/// http://developer.github.com/v3/pulls/#list-pull-requests
|
||||||
/// </remarks>
|
/// </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>
|
||||||
public IObservable<PullRequest> GetAllForRepository(int repositoryId, ApiOptions options)
|
public IObservable<PullRequest> GetAllForRepository(int repositoryId, ApiOptions options)
|
||||||
{
|
{
|
||||||
@@ -141,7 +141,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/pulls/#list-pull-requests
|
/// http://developer.github.com/v3/pulls/#list-pull-requests
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="request">Used to filter and sort the list of pull requests returned</param>
|
/// <param name="request">Used to filter and sort the list of pull requests returned</param>
|
||||||
public IObservable<PullRequest> GetAllForRepository(int repositoryId, PullRequestRequest request)
|
public IObservable<PullRequest> GetAllForRepository(int repositoryId, PullRequestRequest request)
|
||||||
{
|
{
|
||||||
@@ -177,7 +177,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/pulls/#list-pull-requests
|
/// http://developer.github.com/v3/pulls/#list-pull-requests
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="request">Used to filter and sort the list of pull requests returned</param>
|
/// <param name="request">Used to filter and sort the list of pull requests returned</param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
public IObservable<PullRequest> GetAllForRepository(int repositoryId, PullRequestRequest request, ApiOptions options)
|
public IObservable<PullRequest> GetAllForRepository(int repositoryId, PullRequestRequest request, ApiOptions options)
|
||||||
@@ -209,7 +209,7 @@ namespace Octokit.Reactive
|
|||||||
/// Creates a pull request for the specified repository.
|
/// Creates a pull request for the specified repository.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>http://developer.github.com/v3/pulls/#create-a-pull-request</remarks>
|
/// <remarks>http://developer.github.com/v3/pulls/#create-a-pull-request</remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="newPullRequest">A <see cref="NewPullRequest"/> instance describing the new PullRequest to create</param>
|
/// <param name="newPullRequest">A <see cref="NewPullRequest"/> instance describing the new PullRequest to create</param>
|
||||||
public IObservable<PullRequest> Create(int repositoryId, NewPullRequest newPullRequest)
|
public IObservable<PullRequest> Create(int repositoryId, NewPullRequest newPullRequest)
|
||||||
{
|
{
|
||||||
@@ -240,7 +240,7 @@ namespace Octokit.Reactive
|
|||||||
/// Update a pull request for the specified repository.
|
/// Update a pull request for the specified repository.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>http://developer.github.com/v3/pulls/#update-a-pull-request</remarks>
|
/// <remarks>http://developer.github.com/v3/pulls/#update-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 PullRequest number</param>
|
/// <param name="number">The PullRequest number</param>
|
||||||
/// <param name="pullRequestUpdate">An <see cref="PullRequestUpdate"/> instance describing the changes to make to the PullRequest
|
/// <param name="pullRequestUpdate">An <see cref="PullRequestUpdate"/> instance describing the changes to make to the PullRequest
|
||||||
/// </param>
|
/// </param>
|
||||||
@@ -272,7 +272,7 @@ namespace Octokit.Reactive
|
|||||||
/// Merge a pull request.
|
/// Merge a pull request.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>http://developer.github.com/v3/pulls/#merge-a-pull-request-merge-buttontrade</remarks>
|
/// <remarks>http://developer.github.com/v3/pulls/#merge-a-pull-request-merge-buttontrade</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>
|
||||||
/// <param name="mergePullRequest">A <see cref="MergePullRequest"/> instance describing a pull request merge</param>
|
/// <param name="mergePullRequest">A <see cref="MergePullRequest"/> instance describing a pull request merge</param>
|
||||||
public IObservable<PullRequestMerge> Merge(int repositoryId, int number, MergePullRequest mergePullRequest)
|
public IObservable<PullRequestMerge> Merge(int repositoryId, int number, MergePullRequest mergePullRequest)
|
||||||
@@ -301,7 +301,7 @@ namespace Octokit.Reactive
|
|||||||
/// Gets the pull request merge status.
|
/// Gets the pull request merge status.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>http://developer.github.com/v3/pulls/#get-if-a-pull-request-has-been-merged</remarks>
|
/// <remarks>http://developer.github.com/v3/pulls/#get-if-a-pull-request-has-been-merged</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>
|
||||||
public IObservable<bool> Merged(int repositoryId, int number)
|
public IObservable<bool> Merged(int repositoryId, int number)
|
||||||
{
|
{
|
||||||
@@ -327,7 +327,7 @@ namespace Octokit.Reactive
|
|||||||
/// Gets the list of commits on a pull request.
|
/// Gets the list of commits on a pull request.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>http://developer.github.com/v3/pulls/#list-commits-on-a-pull-request</remarks>
|
/// <remarks>http://developer.github.com/v3/pulls/#list-commits-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>
|
||||||
public IObservable<PullRequestCommit> Commits(int repositoryId, int number)
|
public IObservable<PullRequestCommit> Commits(int repositoryId, int number)
|
||||||
{
|
{
|
||||||
@@ -353,7 +353,7 @@ namespace Octokit.Reactive
|
|||||||
/// Get the list of files on a pull request.
|
/// Get the list of files on a pull request.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://developer.github.com/v3/pulls/#list-pull-requests-files</remarks>
|
/// <remarks>https://developer.github.com/v3/pulls/#list-pull-requests-files</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>
|
||||||
public IObservable<PullRequestFile> Files(int repositoryId, int number)
|
public IObservable<PullRequestFile> Files(int repositoryId, int number)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -49,7 +49,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/git/refs/#get-a-reference
|
/// http://developer.github.com/v3/git/refs/#get-a-reference
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="reference">The name of the reference</param>
|
/// <param name="reference">The name of the reference</param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public IObservable<Reference> Get(int repositoryId, string reference)
|
public IObservable<Reference> Get(int repositoryId, string reference)
|
||||||
@@ -82,7 +82,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/git/refs/#get-all-references
|
/// http://developer.github.com/v3/git/refs/#get-all-references
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public IObservable<Reference> GetAll(int repositoryId)
|
public IObservable<Reference> GetAll(int repositoryId)
|
||||||
{
|
{
|
||||||
@@ -114,7 +114,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/git/refs/#get-all-references
|
/// http://developer.github.com/v3/git/refs/#get-all-references
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="subNamespace">The sub-namespace to get references for</param>
|
/// <param name="subNamespace">The sub-namespace to get references for</param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public IObservable<Reference> GetAllForSubNamespace(int repositoryId, string subNamespace)
|
public IObservable<Reference> GetAllForSubNamespace(int repositoryId, string subNamespace)
|
||||||
@@ -149,7 +149,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/git/refs/#create-a-reference
|
/// http://developer.github.com/v3/git/refs/#create-a-reference
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="reference">The reference to create</param>
|
/// <param name="reference">The reference to create</param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public IObservable<Reference> Create(int repositoryId, NewReference reference)
|
public IObservable<Reference> Create(int repositoryId, NewReference reference)
|
||||||
@@ -186,7 +186,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/git/refs/#update-a-reference
|
/// http://developer.github.com/v3/git/refs/#update-a-reference
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="reference">The name of the reference</param>
|
/// <param name="reference">The name of the reference</param>
|
||||||
/// <param name="referenceUpdate">The updated reference data</param>
|
/// <param name="referenceUpdate">The updated reference data</param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
@@ -223,7 +223,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/git/refs/#delete-a-reference
|
/// http://developer.github.com/v3/git/refs/#delete-a-reference
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="reference">The name of the reference</param>
|
/// <param name="reference">The name of the reference</param>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public IObservable<Unit> Delete(int repositoryId, string reference)
|
public IObservable<Unit> Delete(int repositoryId, string reference)
|
||||||
|
|||||||
@@ -47,7 +47,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/repos/releases/#list-releases-for-a-repository">API documentation</a> for more information.
|
/// See the <a href="http://developer.github.com/v3/repos/releases/#list-releases-for-a-repository">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The repository's ID</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
||||||
public IObservable<Release> GetAll(int repositoryId)
|
public IObservable<Release> GetAll(int repositoryId)
|
||||||
{
|
{
|
||||||
@@ -79,7 +79,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/repos/releases/#list-releases-for-a-repository">API documentation</a> for more information.
|
/// See the <a href="http://developer.github.com/v3/repos/releases/#list-releases-for-a-repository">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <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>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
||||||
public IObservable<Release> GetAll(int repositoryId, ApiOptions options)
|
public IObservable<Release> GetAll(int repositoryId, ApiOptions options)
|
||||||
@@ -113,7 +113,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/repos/releases/#get-a-single-release">API documentation</a> for more information.
|
/// See the <a href="http://developer.github.com/v3/repos/releases/#get-a-single-release">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The repository's ID</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="id">The id of the release</param>
|
/// <param name="id">The id of the release</param>
|
||||||
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
||||||
public IObservable<Release> Get(int repositoryId, int id)
|
public IObservable<Release> Get(int repositoryId, int id)
|
||||||
@@ -144,7 +144,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://developer.github.com/v3/repos/releases/#get-the-latest-release">API documentation</a> for more information.
|
/// See the <a href="https://developer.github.com/v3/repos/releases/#get-the-latest-release">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The repository's ID</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
||||||
public IObservable<Release> GetLatest(int repositoryId)
|
public IObservable<Release> GetLatest(int repositoryId)
|
||||||
{
|
{
|
||||||
@@ -176,7 +176,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/repos/releases/#create-a-release">API documentation</a> for more information.
|
/// See the <a href="http://developer.github.com/v3/repos/releases/#create-a-release">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The repository's ID</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="data">A description of the release to create</param>
|
/// <param name="data">A description of the release to create</param>
|
||||||
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
||||||
public IObservable<Release> Create(int repositoryId, NewRelease data)
|
public IObservable<Release> Create(int repositoryId, NewRelease data)
|
||||||
@@ -212,7 +212,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/repos/releases/#edit-a-release">API documentation</a> for more information.
|
/// See the <a href="http://developer.github.com/v3/repos/releases/#edit-a-release">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The repository's ID</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="id">The id of the release</param>
|
/// <param name="id">The id of the release</param>
|
||||||
/// <param name="data">A description of the release to edit</param>
|
/// <param name="data">A description of the release to edit</param>
|
||||||
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
||||||
@@ -247,7 +247,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/repos/releases/#delete-a-release">API documentation</a> for more information.
|
/// See the <a href="http://developer.github.com/v3/repos/releases/#delete-a-release">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The repository's ID</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="id">The id of the release to delete</param>
|
/// <param name="id">The id of the release to delete</param>
|
||||||
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
||||||
public IObservable<Unit> Delete(int repositoryId, int id)
|
public IObservable<Unit> Delete(int repositoryId, int id)
|
||||||
@@ -279,7 +279,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/repos/releases/#list-assets-for-a-release">API documentation</a> for more information.
|
/// See the <a href="http://developer.github.com/v3/repos/releases/#list-assets-for-a-release">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The repository's ID</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="id">The id of the <see cref="Release"/>.</param>
|
/// <param name="id">The id of the <see cref="Release"/>.</param>
|
||||||
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
||||||
public IObservable<ReleaseAsset> GetAllAssets(int repositoryId, int id)
|
public IObservable<ReleaseAsset> GetAllAssets(int repositoryId, int id)
|
||||||
@@ -313,7 +313,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/repos/releases/#list-assets-for-a-release">API documentation</a> for more information.
|
/// See the <a href="http://developer.github.com/v3/repos/releases/#list-assets-for-a-release">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The repository's ID</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="id">The id of the <see cref="Release"/>.</param>
|
/// <param name="id">The id of the <see cref="Release"/>.</param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
||||||
@@ -348,7 +348,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/repos/releases/#get-a-single-release-asset">API documentation</a> for more information.
|
/// See the <a href="http://developer.github.com/v3/repos/releases/#get-a-single-release-asset">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The repository's ID</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="assetId">The id of the <see cref="ReleaseAsset"/></param>
|
/// <param name="assetId">The id of the <see cref="ReleaseAsset"/></param>
|
||||||
public IObservable<ReleaseAsset> GetAsset(int repositoryId, int assetId)
|
public IObservable<ReleaseAsset> GetAsset(int repositoryId, int assetId)
|
||||||
{
|
{
|
||||||
@@ -399,7 +399,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/repos/releases/#edit-a-release-asset">API documentation</a> for more information.
|
/// See the <a href="http://developer.github.com/v3/repos/releases/#edit-a-release-asset">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The repository's ID</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="assetId">The id of the <see cref="ReleaseAsset"/></param>
|
/// <param name="assetId">The id of the <see cref="ReleaseAsset"/></param>
|
||||||
/// <param name="data">Description of the asset with its amended data</param>
|
/// <param name="data">Description of the asset with its amended data</param>
|
||||||
public IObservable<ReleaseAsset> EditAsset(int repositoryId, int assetId, ReleaseAssetUpdate data)
|
public IObservable<ReleaseAsset> EditAsset(int repositoryId, int assetId, ReleaseAssetUpdate data)
|
||||||
@@ -432,7 +432,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/repos/releases/#delete-a-release-asset">API documentation</a> for more information.
|
/// See the <a href="http://developer.github.com/v3/repos/releases/#delete-a-release-asset">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The repository's ID</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="id">The id of the <see cref="ReleaseAsset"/>.</param>
|
/// <param name="id">The id of the <see cref="ReleaseAsset"/>.</param>
|
||||||
public IObservable<Unit> DeleteAsset(int repositoryId, int id)
|
public IObservable<Unit> DeleteAsset(int repositoryId, int id)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -92,7 +92,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Deletes a repository for the specified owner and name.
|
/// Deletes a repository for the specified owner and name.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <remarks>Deleting a repository requires admin access. If OAuth is used, the `delete_repo` scope is required.</remarks>
|
/// <remarks>Deleting a repository requires admin access. If OAuth is used, the `delete_repo` scope is required.</remarks>
|
||||||
/// <returns>An <see cref="IObservable{Unit}"/> for the operation</returns>
|
/// <returns>An <see cref="IObservable{Unit}"/> for the operation</returns>
|
||||||
public IObservable<Unit> Delete(int repositoryId)
|
public IObservable<Unit> Delete(int repositoryId)
|
||||||
@@ -117,7 +117,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Retrieves the <see cref="Repository"/> for the specified owner and name.
|
/// Retrieves the <see cref="Repository"/> for the specified owner and name.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <returns>A <see cref="Repository"/></returns>
|
/// <returns>A <see cref="Repository"/></returns>
|
||||||
public IObservable<Repository> Get(int repositoryId)
|
public IObservable<Repository> Get(int repositoryId)
|
||||||
{
|
{
|
||||||
@@ -371,7 +371,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/repos/#list-branches">API documentation</a> for more details
|
/// See the <a href="http://developer.github.com/v3/repos/#list-branches">API documentation</a> for more details
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
||||||
/// <returns>All <see cref="T:Octokit.Branch"/>es of the repository</returns>
|
/// <returns>All <see cref="T:Octokit.Branch"/>es of the repository</returns>
|
||||||
public IObservable<Branch> GetAllBranches(int repositoryId)
|
public IObservable<Branch> GetAllBranches(int repositoryId)
|
||||||
@@ -405,7 +405,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/repos/#list-branches">API documentation</a> for more details
|
/// See the <a href="http://developer.github.com/v3/repos/#list-branches">API documentation</a> for more details
|
||||||
/// </remarks>
|
/// </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>
|
||||||
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
||||||
/// <returns>All <see cref="T:Octokit.Branch"/>es of the repository</returns>
|
/// <returns>All <see cref="T:Octokit.Branch"/>es of the repository</returns>
|
||||||
@@ -439,7 +439,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/repos/#list-contributors">API documentation</a> for more details
|
/// See the <a href="http://developer.github.com/v3/repos/#list-contributors">API documentation</a> for more details
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <returns>All contributors of the repository.</returns>
|
/// <returns>All contributors of the repository.</returns>
|
||||||
public IObservable<RepositoryContributor> GetAllContributors(int repositoryId)
|
public IObservable<RepositoryContributor> GetAllContributors(int repositoryId)
|
||||||
{
|
{
|
||||||
@@ -471,7 +471,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/repos/#list-contributors">API documentation</a> for more details
|
/// See the <a href="http://developer.github.com/v3/repos/#list-contributors">API documentation</a> for more details
|
||||||
/// </remarks>
|
/// </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>All contributors of the repository.</returns>
|
/// <returns>All contributors of the repository.</returns>
|
||||||
public IObservable<RepositoryContributor> GetAllContributors(int repositoryId, ApiOptions options)
|
public IObservable<RepositoryContributor> GetAllContributors(int repositoryId, ApiOptions options)
|
||||||
@@ -505,7 +505,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/repos/#list-contributors">API documentation</a> for more details
|
/// See the <a href="http://developer.github.com/v3/repos/#list-contributors">API documentation</a> for more details
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="includeAnonymous">True if anonymous contributors should be included in result; Otherwise false</param>
|
/// <param name="includeAnonymous">True if anonymous contributors should be included in result; Otherwise false</param>
|
||||||
/// <returns>All contributors of the repository.</returns>
|
/// <returns>All contributors of the repository.</returns>
|
||||||
public IObservable<RepositoryContributor> GetAllContributors(int repositoryId, bool includeAnonymous)
|
public IObservable<RepositoryContributor> GetAllContributors(int repositoryId, bool includeAnonymous)
|
||||||
@@ -544,7 +544,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/repos/#list-contributors">API documentation</a> for more details
|
/// See the <a href="http://developer.github.com/v3/repos/#list-contributors">API documentation</a> for more details
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="includeAnonymous">True if anonymous contributors should be included in result; Otherwise false</param>
|
/// <param name="includeAnonymous">True if anonymous contributors should be included in result; Otherwise false</param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
/// <returns>All contributors of the repository.</returns>
|
/// <returns>All contributors of the repository.</returns>
|
||||||
@@ -586,7 +586,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/repos/#list-languages">API documentation</a> for more details
|
/// See the <a href="http://developer.github.com/v3/repos/#list-languages">API documentation</a> for more details
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <returns>All languages used in the repository and the number of bytes of each language.</returns>
|
/// <returns>All languages used in the repository and the number of bytes of each language.</returns>
|
||||||
public IObservable<RepositoryLanguage> GetAllLanguages(int repositoryId)
|
public IObservable<RepositoryLanguage> GetAllLanguages(int repositoryId)
|
||||||
{
|
{
|
||||||
@@ -619,7 +619,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/repos/#list-teams">API documentation</a> for more details
|
/// See the <a href="http://developer.github.com/v3/repos/#list-teams">API documentation</a> for more details
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <returns>All <see cref="T:Octokit.Team"/>s associated with the repository</returns>
|
/// <returns>All <see cref="T:Octokit.Team"/>s associated with the repository</returns>
|
||||||
public IObservable<Team> GetAllTeams(int repositoryId)
|
public IObservable<Team> GetAllTeams(int repositoryId)
|
||||||
{
|
{
|
||||||
@@ -651,7 +651,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/repos/#list-teams">API documentation</a> for more details
|
/// See the <a href="http://developer.github.com/v3/repos/#list-teams">API documentation</a> for more details
|
||||||
/// </remarks>
|
/// </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>All <see cref="T:Octokit.Team"/>s associated with the repository</returns>
|
/// <returns>All <see cref="T:Octokit.Team"/>s associated with the repository</returns>
|
||||||
public IObservable<Team> GetAllTeams(int repositoryId, ApiOptions options)
|
public IObservable<Team> GetAllTeams(int repositoryId, ApiOptions options)
|
||||||
@@ -684,7 +684,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/repos/#list-tags">API documentation</a> for more details
|
/// See the <a href="http://developer.github.com/v3/repos/#list-tags">API documentation</a> for more details
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <returns>All of the repositories tags.</returns>
|
/// <returns>All of the repositories tags.</returns>
|
||||||
public IObservable<RepositoryTag> GetAllTags(int repositoryId)
|
public IObservable<RepositoryTag> GetAllTags(int repositoryId)
|
||||||
{
|
{
|
||||||
@@ -716,7 +716,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/repos/#list-tags">API documentation</a> for more details
|
/// See the <a href="http://developer.github.com/v3/repos/#list-tags">API documentation</a> for more details
|
||||||
/// </remarks>
|
/// </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>All of the repositories tags.</returns>
|
/// <returns>All of the repositories tags.</returns>
|
||||||
public IObservable<RepositoryTag> GetAllTags(int repositoryId, ApiOptions options)
|
public IObservable<RepositoryTag> GetAllTags(int repositoryId, ApiOptions options)
|
||||||
@@ -751,7 +751,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="http://developer.github.com/v3/repos/#get-branch">API documentation</a> for more details
|
/// See the <a href="http://developer.github.com/v3/repos/#get-branch">API documentation</a> for more details
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="branchName">The name of the branch</param>
|
/// <param name="branchName">The name of the branch</param>
|
||||||
/// <returns>The specified <see cref="T:Octokit.Branch"/></returns>
|
/// <returns>The specified <see cref="T:Octokit.Branch"/></returns>
|
||||||
public IObservable<Branch> GetBranch(int repositoryId, string branchName)
|
public IObservable<Branch> GetBranch(int repositoryId, string branchName)
|
||||||
@@ -780,7 +780,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Updates the specified repository with the values given in <paramref name="update"/>
|
/// Updates the specified repository with the values given in <paramref name="update"/>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="update">New values to update the repository with</param>
|
/// <param name="update">New values to update the repository with</param>
|
||||||
/// <returns>The updated <see cref="T:Octokit.Repository"/></returns>
|
/// <returns>The updated <see cref="T:Octokit.Repository"/></returns>
|
||||||
public IObservable<Repository> Edit(int repositoryId, RepositoryUpdate update)
|
public IObservable<Repository> Edit(int repositoryId, RepositoryUpdate update)
|
||||||
@@ -811,7 +811,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Edit the specified branch with the values given in <paramref name="update"/>
|
/// Edit the specified branch with the values given in <paramref name="update"/>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="branch">The name of the branch</param>
|
/// <param name="branch">The name of the branch</param>
|
||||||
/// <param name="update">New values to update the branch with</param>
|
/// <param name="update">New values to update the branch with</param>
|
||||||
/// <returns>The updated <see cref="T:Octokit.Branch"/></returns>
|
/// <returns>The updated <see cref="T:Octokit.Branch"/></returns>
|
||||||
|
|||||||
@@ -42,7 +42,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets a single Repository Comment by number.
|
/// Gets a single Repository Comment by number.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="number">The comment id</param>
|
/// <param name="number">The comment id</param>
|
||||||
/// <remarks>http://developer.github.com/v3/repos/comments/#get-a-single-commit-comment</remarks>
|
/// <remarks>http://developer.github.com/v3/repos/comments/#get-a-single-commit-comment</remarks>
|
||||||
public IObservable<CommitComment> Get(int repositoryId, int number)
|
public IObservable<CommitComment> Get(int repositoryId, int number)
|
||||||
@@ -67,7 +67,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets Commit Comments for a repository.
|
/// Gets Commit Comments for a repository.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <remarks>http://developer.github.com/v3/repos/comments/#list-commit-comments-for-a-repository</remarks>
|
/// <remarks>http://developer.github.com/v3/repos/comments/#list-commit-comments-for-a-repository</remarks>
|
||||||
public IObservable<CommitComment> GetAllForRepository(int repositoryId)
|
public IObservable<CommitComment> GetAllForRepository(int repositoryId)
|
||||||
{
|
{
|
||||||
@@ -93,7 +93,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets Commit Comments for a repository.
|
/// Gets Commit Comments for a repository.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="options">Options to change the API response</param>
|
/// <param name="options">Options to change the API response</param>
|
||||||
/// <remarks>http://developer.github.com/v3/repos/comments/#list-commit-comments-for-a-repository</remarks>
|
/// <remarks>http://developer.github.com/v3/repos/comments/#list-commit-comments-for-a-repository</remarks>
|
||||||
public IObservable<CommitComment> GetAllForRepository(int repositoryId, ApiOptions options)
|
public IObservable<CommitComment> GetAllForRepository(int repositoryId, ApiOptions options)
|
||||||
@@ -122,7 +122,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets Commit Comments for a specified Commit.
|
/// Gets Commit Comments for a specified Commit.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="sha">The sha of the commit</param>
|
/// <param name="sha">The sha of the commit</param>
|
||||||
/// <remarks>http://developer.github.com/v3/repos/comments/#list-comments-for-a-single-commit</remarks>
|
/// <remarks>http://developer.github.com/v3/repos/comments/#list-comments-for-a-single-commit</remarks>
|
||||||
public IObservable<CommitComment> GetAllForCommit(int repositoryId, string sha)
|
public IObservable<CommitComment> GetAllForCommit(int repositoryId, string sha)
|
||||||
@@ -153,7 +153,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets Commit Comments for a specified Commit.
|
/// Gets Commit Comments for a specified Commit.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="sha">The sha of the commit</param>
|
/// <param name="sha">The sha of the commit</param>
|
||||||
/// <param name="options">Options to change the API response</param>
|
/// <param name="options">Options to change the API response</param>
|
||||||
/// <remarks>http://developer.github.com/v3/repos/comments/#list-comments-for-a-single-commit</remarks>
|
/// <remarks>http://developer.github.com/v3/repos/comments/#list-comments-for-a-single-commit</remarks>
|
||||||
@@ -186,7 +186,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Creates a new Commit Comment for a specified Commit.
|
/// Creates a new Commit Comment for a specified Commit.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="sha">The sha reference of commit</param>
|
/// <param name="sha">The sha reference of commit</param>
|
||||||
/// <param name="newCommitComment">The new comment to add to the commit</param>
|
/// <param name="newCommitComment">The new comment to add to the commit</param>
|
||||||
/// <remarks>http://developer.github.com/v3/repos/comments/#create-a-commit-comment</remarks>
|
/// <remarks>http://developer.github.com/v3/repos/comments/#create-a-commit-comment</remarks>
|
||||||
@@ -218,7 +218,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Updates a specified Commit Comment.
|
/// Updates a specified Commit Comment.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="number">The comment number</param>
|
/// <param name="number">The comment number</param>
|
||||||
/// <param name="commentUpdate">The modified comment</param>
|
/// <param name="commentUpdate">The modified comment</param>
|
||||||
/// <remarks>http://developer.github.com/v3/repos/comments/#update-a-commit-comment</remarks>
|
/// <remarks>http://developer.github.com/v3/repos/comments/#update-a-commit-comment</remarks>
|
||||||
@@ -247,7 +247,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Deletes the specified Commit Comment
|
/// Deletes the specified Commit Comment
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="number">The comment id</param>
|
/// <param name="number">The comment id</param>
|
||||||
/// <remarks>http://developer.github.com/v3/repos/comments/#delete-a-commit-comment</remarks>
|
/// <remarks>http://developer.github.com/v3/repos/comments/#delete-a-commit-comment</remarks>
|
||||||
public IObservable<Unit> Delete(int repositoryId, int number)
|
public IObservable<Unit> Delete(int repositoryId, int number)
|
||||||
|
|||||||
@@ -43,7 +43,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Compare two references in a repository
|
/// Compare two references in a repository
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="base">The reference to use as the base commit</param>
|
/// <param name="base">The reference to use as the base commit</param>
|
||||||
/// <param name="head">The reference to use as the head commit</param>
|
/// <param name="head">The reference to use as the head commit</param>
|
||||||
public IObservable<CompareResult> Compare(int repositoryId, string @base, string head)
|
public IObservable<CompareResult> Compare(int repositoryId, string @base, string head)
|
||||||
@@ -72,7 +72,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets all commits for a given repository
|
/// Gets all commits for a given repository
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="reference">The reference for the commit</param>
|
/// <param name="reference">The reference for the commit</param>
|
||||||
public IObservable<GitHubCommit> Get(int repositoryId, string reference)
|
public IObservable<GitHubCommit> Get(int repositoryId, string reference)
|
||||||
{
|
{
|
||||||
@@ -97,7 +97,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets all commits for a given repository
|
/// Gets all commits for a given repository
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
public IObservable<GitHubCommit> GetAll(int repositoryId)
|
public IObservable<GitHubCommit> GetAll(int repositoryId)
|
||||||
{
|
{
|
||||||
return GetAll(repositoryId, new CommitRequest(), ApiOptions.None);
|
return GetAll(repositoryId, new CommitRequest(), ApiOptions.None);
|
||||||
@@ -121,7 +121,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets all commits for a given repository
|
/// Gets all commits for a given repository
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <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>
|
||||||
public IObservable<GitHubCommit> GetAll(int repositoryId, ApiOptions options)
|
public IObservable<GitHubCommit> GetAll(int repositoryId, ApiOptions options)
|
||||||
{
|
{
|
||||||
@@ -148,7 +148,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets all commits for a given repository
|
/// Gets all commits for a given repository
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="request">Used to filter list of commits returned</param>
|
/// <param name="request">Used to filter list of commits returned</param>
|
||||||
public IObservable<GitHubCommit> GetAll(int repositoryId, CommitRequest request)
|
public IObservable<GitHubCommit> GetAll(int repositoryId, CommitRequest request)
|
||||||
{
|
{
|
||||||
@@ -177,7 +177,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets all commits for a given repository
|
/// Gets all commits for a given repository
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="request">Used to filter list of commits returned</param>
|
/// <param name="request">Used to filter list of commits returned</param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
public IObservable<GitHubCommit> GetAll(int repositoryId, CommitRequest request, ApiOptions options)
|
public IObservable<GitHubCommit> GetAll(int repositoryId, CommitRequest request, ApiOptions options)
|
||||||
@@ -206,7 +206,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Get the SHA-1 of a commit reference
|
/// Get the SHA-1 of a commit reference
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="reference">The repository reference</param>
|
/// <param name="reference">The repository reference</param>
|
||||||
public IObservable<string> GetSha1(int repositoryId, string reference)
|
public IObservable<string> GetSha1(int repositoryId, string reference)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -42,7 +42,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Returns the HTML rendered README.
|
/// Returns the HTML rendered README.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
public IObservable<Readme> GetReadme(int repositoryId)
|
public IObservable<Readme> GetReadme(int repositoryId)
|
||||||
{
|
{
|
||||||
return _client.Repository.Content.GetReadme(repositoryId).ToObservable();
|
return _client.Repository.Content.GetReadme(repositoryId).ToObservable();
|
||||||
@@ -64,7 +64,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Returns just the HTML portion of the README without the surrounding HTML document.
|
/// Returns just the HTML portion of the README without the surrounding HTML document.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
public IObservable<string> GetReadmeHtml(int repositoryId)
|
public IObservable<string> GetReadmeHtml(int repositoryId)
|
||||||
{
|
{
|
||||||
return _client.Repository.Content.GetReadmeHtml(repositoryId).ToObservable();
|
return _client.Repository.Content.GetReadmeHtml(repositoryId).ToObservable();
|
||||||
@@ -88,7 +88,7 @@ namespace Octokit.Reactive
|
|||||||
/// Get an archive of a given repository's contents
|
/// Get an archive of a given repository's contents
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://developer.github.com/v3/repos/contents/#get-archive-link</remarks>
|
/// <remarks>https://developer.github.com/v3/repos/contents/#get-archive-link</remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
public IObservable<byte[]> GetArchive(int repositoryId)
|
public IObservable<byte[]> GetArchive(int repositoryId)
|
||||||
{
|
{
|
||||||
return GetArchive(repositoryId, ArchiveFormat.Tarball);
|
return GetArchive(repositoryId, ArchiveFormat.Tarball);
|
||||||
@@ -113,7 +113,7 @@ namespace Octokit.Reactive
|
|||||||
/// Get an archive of a given repository's contents, in a specific format
|
/// Get an archive of a given repository's contents, in a specific format
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://developer.github.com/v3/repos/contents/#get-archive-link</remarks>
|
/// <remarks>https://developer.github.com/v3/repos/contents/#get-archive-link</remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="archiveFormat">The format of the archive. Can be either tarball or zipball</param>
|
/// <param name="archiveFormat">The format of the archive. Can be either tarball or zipball</param>
|
||||||
public IObservable<byte[]> GetArchive(int repositoryId, ArchiveFormat archiveFormat)
|
public IObservable<byte[]> GetArchive(int repositoryId, ArchiveFormat archiveFormat)
|
||||||
{
|
{
|
||||||
@@ -141,7 +141,7 @@ namespace Octokit.Reactive
|
|||||||
/// Get an archive of a given repository's contents, using a specific format and reference
|
/// Get an archive of a given repository's contents, using a specific format and reference
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://developer.github.com/v3/repos/contents/#get-archive-link</remarks>
|
/// <remarks>https://developer.github.com/v3/repos/contents/#get-archive-link</remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="archiveFormat">The format of the archive. Can be either tarball or zipball</param>
|
/// <param name="archiveFormat">The format of the archive. Can be either tarball or zipball</param>
|
||||||
/// <param name="reference">A valid Git reference.</param>
|
/// <param name="reference">A valid Git reference.</param>
|
||||||
public IObservable<byte[]> GetArchive(int repositoryId, ArchiveFormat archiveFormat, string reference)
|
public IObservable<byte[]> GetArchive(int repositoryId, ArchiveFormat archiveFormat, string reference)
|
||||||
@@ -174,7 +174,7 @@ namespace Octokit.Reactive
|
|||||||
/// Get an archive of a given repository's contents, in a specific format
|
/// Get an archive of a given repository's contents, in a specific format
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://developer.github.com/v3/repos/contents/#get-archive-link</remarks>
|
/// <remarks>https://developer.github.com/v3/repos/contents/#get-archive-link</remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="archiveFormat">The format of the archive. Can be either tarball or zipball</param>
|
/// <param name="archiveFormat">The format of the archive. Can be either tarball or zipball</param>
|
||||||
/// <param name="reference">A valid Git reference.</param>
|
/// <param name="reference">A valid Git reference.</param>
|
||||||
/// <param name="timeout"> Time span until timeout </param>
|
/// <param name="timeout"> Time span until timeout </param>
|
||||||
@@ -212,7 +212,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// If given a path to a single file, this method returns a collection containing only that file.
|
/// If given a path to a single file, this method returns a collection containing only that file.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="path">The content path</param>
|
/// <param name="path">The content path</param>
|
||||||
public IObservable<RepositoryContent> GetAllContents(int repositoryId, string path)
|
public IObservable<RepositoryContent> GetAllContents(int repositoryId, string path)
|
||||||
{
|
{
|
||||||
@@ -241,7 +241,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Returns the contents of the root directory in a repository.
|
/// Returns the contents of the root directory in a repository.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
public IObservable<RepositoryContent> GetAllContents(int repositoryId)
|
public IObservable<RepositoryContent> GetAllContents(int repositoryId)
|
||||||
{
|
{
|
||||||
return _client
|
return _client
|
||||||
@@ -277,7 +277,7 @@ namespace Octokit.Reactive
|
|||||||
/// If given a path to a single file, this method returns a collection containing only that file.
|
/// If given a path to a single file, this method returns a collection containing only that file.
|
||||||
/// See the <a href="https://developer.github.com/v3/repos/contents/#get-contents">API documentation</a> for more information.
|
/// See the <a href="https://developer.github.com/v3/repos/contents/#get-contents">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="reference">The name of the commit/branch/tag. Default: the repository’s default branch (usually master)</param>
|
/// <param name="reference">The name of the commit/branch/tag. Default: the repository’s default branch (usually master)</param>
|
||||||
/// <param name="path">The content path</param>
|
/// <param name="path">The content path</param>
|
||||||
public IObservable<RepositoryContent> GetAllContentsByRef(int repositoryId, string reference, string path)
|
public IObservable<RepositoryContent> GetAllContentsByRef(int repositoryId, string reference, string path)
|
||||||
@@ -306,7 +306,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Returns the contents of the home directory in a repository.
|
/// Returns the contents of the home directory in a repository.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="reference">The name of the commit/branch/tag. Default: the repository’s default branch (usually master)</param>
|
/// <param name="reference">The name of the commit/branch/tag. Default: the repository’s default branch (usually master)</param>
|
||||||
public IObservable<RepositoryContent> GetAllContentsByRef(int repositoryId, string reference)
|
public IObservable<RepositoryContent> GetAllContentsByRef(int repositoryId, string reference)
|
||||||
{
|
{
|
||||||
@@ -335,7 +335,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Creates a commit that creates a new file in a repository.
|
/// Creates a commit that creates a new file in a repository.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="path">The path to the file</param>
|
/// <param name="path">The path to the file</param>
|
||||||
/// <param name="request">Information about the file to create</param>
|
/// <param name="request">Information about the file to create</param>
|
||||||
public IObservable<RepositoryContentChangeSet> CreateFile(int repositoryId, string path, CreateFileRequest request)
|
public IObservable<RepositoryContentChangeSet> CreateFile(int repositoryId, string path, CreateFileRequest request)
|
||||||
@@ -366,7 +366,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Creates a commit that updates the contents of a file in a repository.
|
/// Creates a commit that updates the contents of a file in a repository.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="path">The path to the file</param>
|
/// <param name="path">The path to the file</param>
|
||||||
/// <param name="request">Information about the file to update</param>
|
/// <param name="request">Information about the file to update</param>
|
||||||
public IObservable<RepositoryContentChangeSet> UpdateFile(int repositoryId, string path, UpdateFileRequest request)
|
public IObservable<RepositoryContentChangeSet> UpdateFile(int repositoryId, string path, UpdateFileRequest request)
|
||||||
@@ -397,7 +397,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Creates a commit that deletes a file in a repository.
|
/// Creates a commit that deletes a file in a repository.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="path">The path to the file</param>
|
/// <param name="path">The path to the file</param>
|
||||||
/// <param name="request">Information about the file to delete</param>
|
/// <param name="request">Information about the file to delete</param>
|
||||||
public IObservable<Unit> DeleteFile(int repositoryId, string path, DeleteFileRequest request)
|
public IObservable<Unit> DeleteFile(int repositoryId, string path, DeleteFileRequest request)
|
||||||
|
|||||||
@@ -47,7 +47,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://developer.github.com/v3/repos/keys/#get"> API documentation</a> for more information.
|
/// See the <a href="https://developer.github.com/v3/repos/keys/#get"> API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository.</param>
|
/// <param name="repositoryId">The Id of the repository.</param>
|
||||||
/// <param name="number">The id of the deploy key.</param>
|
/// <param name="number">The id of the deploy key.</param>
|
||||||
public IObservable<DeployKey> Get(int repositoryId, int number)
|
public IObservable<DeployKey> Get(int repositoryId, int number)
|
||||||
{
|
{
|
||||||
@@ -76,7 +76,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://developer.github.com/v3/repos/keys/#list"> API documentation</a> for more information.
|
/// See the <a href="https://developer.github.com/v3/repos/keys/#list"> API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository.</param>
|
/// <param name="repositoryId">The Id of the repository.</param>
|
||||||
public IObservable<DeployKey> GetAll(int repositoryId)
|
public IObservable<DeployKey> GetAll(int repositoryId)
|
||||||
{
|
{
|
||||||
return GetAll(repositoryId, ApiOptions.None);
|
return GetAll(repositoryId, ApiOptions.None);
|
||||||
@@ -106,7 +106,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://developer.github.com/v3/repos/keys/#list"> API documentation</a> for more information.
|
/// See the <a href="https://developer.github.com/v3/repos/keys/#list"> API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </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>
|
||||||
public IObservable<DeployKey> GetAll(int repositoryId, ApiOptions options)
|
public IObservable<DeployKey> GetAll(int repositoryId, ApiOptions options)
|
||||||
{
|
{
|
||||||
@@ -146,7 +146,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://developer.github.com/v3/repos/keys/#create"> API documentation</a> for more information.
|
/// See the <a href="https://developer.github.com/v3/repos/keys/#create"> API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository.</param>
|
/// <param name="repositoryId">The Id of the repository.</param>
|
||||||
/// <param name="newDeployKey">The deploy key to create for the repository.</param>
|
/// <param name="newDeployKey">The deploy key to create for the repository.</param>
|
||||||
public IObservable<DeployKey> Create(int repositoryId, NewDeployKey newDeployKey)
|
public IObservable<DeployKey> Create(int repositoryId, NewDeployKey newDeployKey)
|
||||||
{
|
{
|
||||||
@@ -185,7 +185,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://developer.github.com/v3/repos/keys/#delete"> API documentation</a> for more information.
|
/// See the <a href="https://developer.github.com/v3/repos/keys/#delete"> API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository.</param>
|
/// <param name="repositoryId">The Id of the repository.</param>
|
||||||
/// <param name="number">The id of the deploy key to delete.</param>
|
/// <param name="number">The id of the deploy key to delete.</param>
|
||||||
public IObservable<Unit> Delete(int repositoryId, int number)
|
public IObservable<Unit> Delete(int repositoryId, int number)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -49,7 +49,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See <a href="http://developer.github.com/v3/repos/forks/#list-forks">API documentation</a> for more information.
|
/// See <a href="http://developer.github.com/v3/repos/forks/#list-forks">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
public IObservable<Repository> GetAll(int repositoryId)
|
public IObservable<Repository> GetAll(int repositoryId)
|
||||||
{
|
{
|
||||||
return GetAll(repositoryId, ApiOptions.None);
|
return GetAll(repositoryId, ApiOptions.None);
|
||||||
@@ -79,7 +79,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See <a href="http://developer.github.com/v3/repos/forks/#list-forks">API documentation</a> for more information.
|
/// See <a href="http://developer.github.com/v3/repos/forks/#list-forks">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </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>
|
||||||
public IObservable<Repository> GetAll(int repositoryId, ApiOptions options)
|
public IObservable<Repository> GetAll(int repositoryId, ApiOptions options)
|
||||||
{
|
{
|
||||||
@@ -112,7 +112,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See <a href="http://developer.github.com/v3/repos/forks/#list-forks">API documentation</a> for more information.
|
/// See <a href="http://developer.github.com/v3/repos/forks/#list-forks">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="request">Used to request and filter a list of repository forks</param>
|
/// <param name="request">Used to request and filter a list of repository forks</param>
|
||||||
public IObservable<Repository> GetAll(int repositoryId, RepositoryForksListRequest request)
|
public IObservable<Repository> GetAll(int repositoryId, RepositoryForksListRequest request)
|
||||||
{
|
{
|
||||||
@@ -147,7 +147,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See <a href="http://developer.github.com/v3/repos/forks/#list-forks">API documentation</a> for more information.
|
/// See <a href="http://developer.github.com/v3/repos/forks/#list-forks">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="request">Used to request and filter a list of repository forks</param>
|
/// <param name="request">Used to request and filter a list of repository forks</param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
public IObservable<Repository> GetAll(int repositoryId, RepositoryForksListRequest request, ApiOptions options)
|
public IObservable<Repository> GetAll(int repositoryId, RepositoryForksListRequest request, ApiOptions options)
|
||||||
@@ -182,7 +182,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See <a href="http://developer.github.com/v3/repos/forks/#create-a-fork">API documentation</a> for more information.
|
/// See <a href="http://developer.github.com/v3/repos/forks/#create-a-fork">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="fork">Used to fork a repository</param>
|
/// <param name="fork">Used to fork a repository</param>
|
||||||
public IObservable<Repository> Create(int repositoryId, NewRepositoryFork fork)
|
public IObservable<Repository> Create(int repositoryId, NewRepositoryFork fork)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -41,7 +41,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets the list of hooks defined for a repository
|
/// Gets the list of hooks defined for a repository
|
||||||
/// </summary>
|
/// </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>
|
/// <remarks>See <a href="http://developer.github.com/v3/repos/hooks/#list">API documentation</a> for more information.</remarks>
|
||||||
public IObservable<RepositoryHook> GetAll(int repositoryId)
|
public IObservable<RepositoryHook> GetAll(int repositoryId)
|
||||||
{
|
{
|
||||||
@@ -67,7 +67,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets the list of hooks defined for a repository
|
/// Gets the list of hooks defined for a repository
|
||||||
/// </summary>
|
/// </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>
|
/// <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>
|
/// <remarks>See <a href="http://developer.github.com/v3/repos/hooks/#list">API documentation</a> for more information.</remarks>
|
||||||
public IObservable<RepositoryHook> GetAll(int repositoryId, ApiOptions options)
|
public IObservable<RepositoryHook> GetAll(int repositoryId, ApiOptions options)
|
||||||
@@ -95,7 +95,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets a single hook by Id
|
/// Gets a single hook by Id
|
||||||
/// </summary>
|
/// </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="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>
|
/// <remarks>See <a href="http://developer.github.com/v3/repos/hooks/#get-single-hook">API documentation</a> for more information.</remarks>
|
||||||
public IObservable<RepositoryHook> Get(int repositoryId, int hookId)
|
public IObservable<RepositoryHook> Get(int repositoryId, int hookId)
|
||||||
@@ -122,7 +122,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Creates a hook for a repository
|
/// Creates a hook for a repository
|
||||||
/// </summary>
|
/// </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>
|
/// <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>
|
/// <remarks>See <a href="http://developer.github.com/v3/repos/hooks/#create-a-hook">API documentation</a> for more information.</remarks>
|
||||||
public IObservable<RepositoryHook> Create(int repositoryId, NewRepositoryHook hook)
|
public IObservable<RepositoryHook> Create(int repositoryId, NewRepositoryHook hook)
|
||||||
@@ -152,7 +152,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Edits a hook for a repository
|
/// Edits a hook for a repository
|
||||||
/// </summary>
|
/// </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="hookId">The repository's hook id</param>
|
||||||
/// <param name="hook">The requested changes to an edit repository hook</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>
|
/// <remarks>See <a href="http://developer.github.com/v3/repos/hooks/#edit-a-hook">API documentation</a> for more information.</remarks>
|
||||||
@@ -183,7 +183,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Tests a hook for a repository
|
/// Tests a hook for a repository
|
||||||
/// </summary>
|
/// </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="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.
|
/// <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
|
/// This will trigger the hook with the latest push to the current repository if the hook is subscribed to push events. If the hook
|
||||||
@@ -211,7 +211,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// This will trigger a ping event to be sent to the hook.
|
/// This will trigger a ping event to be sent to the hook.
|
||||||
/// </summary>
|
/// </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="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>
|
/// <remarks>See <a href="http://developer.github.com/v3/repos/hooks/#edit-a-hook">API documentation</a> for more information.</remarks>
|
||||||
public IObservable<Unit> Ping(int repositoryId, int hookId)
|
public IObservable<Unit> Ping(int repositoryId, int hookId)
|
||||||
@@ -237,7 +237,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Deletes a hook for a repository
|
/// Deletes a hook for a repository
|
||||||
/// </summary>
|
/// </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="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>
|
/// <remarks>See <a href="http://developer.github.com/v3/repos/hooks/#delete-a-hook">API documentation</a> for more information.</remarks>
|
||||||
public IObservable<Unit> Delete(int repositoryId, int hookId)
|
public IObservable<Unit> Delete(int repositoryId, int hookId)
|
||||||
|
|||||||
@@ -44,7 +44,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets the page metadata for a given repository
|
/// Gets the page metadata for a given repository
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://developer.github.com/v3/repos/pages/#get-information-about-a-pages-site">API documentation</a> for more information.
|
/// See the <a href="https://developer.github.com/v3/repos/pages/#get-information-about-a-pages-site">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
@@ -72,7 +72,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets all build metadata for a given repository
|
/// Gets all build metadata for a given repository
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://developer.github.com/v3/repos/pages/#list-pages-builds">API documentation</a> for more information.
|
/// See the <a href="https://developer.github.com/v3/repos/pages/#list-pages-builds">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
@@ -102,7 +102,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets all build metadata for a given repository
|
/// Gets all build metadata for a given repository
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="options">Options to change the API response</param>
|
/// <param name="options">Options to change the API response</param>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://developer.github.com/v3/repos/pages/#list-pages-builds">API documentation</a> for more information.
|
/// See the <a href="https://developer.github.com/v3/repos/pages/#list-pages-builds">API documentation</a> for more information.
|
||||||
@@ -133,7 +133,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets the build metadata for the last build for a given repository
|
/// Gets the build metadata for the last build for a given repository
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://developer.github.com/v3/repos/pages/#list-latest-pages-build">API documentation</a> for more information.
|
/// See the <a href="https://developer.github.com/v3/repos/pages/#list-latest-pages-build">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
|
|||||||
@@ -25,7 +25,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Retrieves the <see cref="SshKey"/> for the specified id.
|
/// Retrieves the <see cref="SshKey"/> for the specified id.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="id">The ID of the SSH key</param>
|
/// <param name="id">The Id of the SSH key</param>
|
||||||
/// <returns>A <see cref="SshKey"/></returns>
|
/// <returns>A <see cref="SshKey"/></returns>
|
||||||
[Obsolete("This method is obsolete. Please use User.Keys.Get(int) instead.")]
|
[Obsolete("This method is obsolete. Please use User.Keys.Get(int) instead.")]
|
||||||
public IObservable<SshKey> Get(int id)
|
public IObservable<SshKey> Get(int id)
|
||||||
@@ -74,7 +74,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Update the specified <see cref="UserUpdate"/>.
|
/// Update the specified <see cref="UserUpdate"/>.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="id">The ID of the SSH key</param>
|
/// <param name="id">The Id of the SSH key</param>
|
||||||
/// <param name="key">The SSH Key contents</param>
|
/// <param name="key">The SSH Key contents</param>
|
||||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated.</exception>
|
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated.</exception>
|
||||||
/// <returns>A <see cref="User"/></returns>
|
/// <returns>A <see cref="User"/></returns>
|
||||||
|
|||||||
@@ -40,7 +40,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Retrieves all of the stargazers for the passed repository
|
/// Retrieves all of the stargazers for the passed repository
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated</exception>
|
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated</exception>
|
||||||
public IObservable<User> GetAllStargazers(int repositoryId)
|
public IObservable<User> GetAllStargazers(int repositoryId)
|
||||||
{
|
{
|
||||||
@@ -66,7 +66,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Retrieves all of the stargazers for the passed repository
|
/// Retrieves all of the stargazers for the passed repository
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <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>
|
||||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated</exception>
|
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated</exception>
|
||||||
public IObservable<User> GetAllStargazers(int repositoryId, ApiOptions options)
|
public IObservable<User> GetAllStargazers(int repositoryId, ApiOptions options)
|
||||||
@@ -93,7 +93,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Retrieves all of the stargazers for the passed repository with star creation timestamps.
|
/// Retrieves all of the stargazers for the passed repository with star creation timestamps.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated.</exception>
|
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated.</exception>
|
||||||
public IObservable<UserStar> GetAllStargazersWithTimestamps(int repositoryId)
|
public IObservable<UserStar> GetAllStargazersWithTimestamps(int repositoryId)
|
||||||
{
|
{
|
||||||
@@ -119,7 +119,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Retrieves all of the stargazers for the passed repository with star creation timestamps.
|
/// Retrieves all of the stargazers for the passed repository with star creation timestamps.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <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>
|
||||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated.</exception>
|
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated.</exception>
|
||||||
public IObservable<UserStar> GetAllStargazersWithTimestamps(int repositoryId, ApiOptions options)
|
public IObservable<UserStar> GetAllStargazersWithTimestamps(int repositoryId, ApiOptions options)
|
||||||
|
|||||||
@@ -37,7 +37,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Returns a list of <see cref="Contributor"/> for the given repository
|
/// Returns a list of <see cref="Contributor"/> for the given repository
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
public IObservable<IEnumerable<Contributor>> GetContributors(int repositoryId)
|
public IObservable<IEnumerable<Contributor>> GetContributors(int repositoryId)
|
||||||
{
|
{
|
||||||
return _client.Repository.Statistics.GetContributors(repositoryId).ToObservable();
|
return _client.Repository.Statistics.GetContributors(repositoryId).ToObservable();
|
||||||
@@ -59,7 +59,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Returns the last year of commit activity grouped by week.
|
/// Returns the last year of commit activity grouped by week.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
public IObservable<CommitActivity> GetCommitActivity(int repositoryId)
|
public IObservable<CommitActivity> GetCommitActivity(int repositoryId)
|
||||||
{
|
{
|
||||||
return _client.Repository.Statistics.GetCommitActivity(repositoryId).ToObservable();
|
return _client.Repository.Statistics.GetCommitActivity(repositoryId).ToObservable();
|
||||||
@@ -81,7 +81,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Returns a weekly aggregate of the number of additions and deletions pushed to a repository.
|
/// Returns a weekly aggregate of the number of additions and deletions pushed to a repository.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
public IObservable<CodeFrequency> GetCodeFrequency(int repositoryId)
|
public IObservable<CodeFrequency> GetCodeFrequency(int repositoryId)
|
||||||
{
|
{
|
||||||
return _client.Repository.Statistics.GetCodeFrequency(repositoryId).ToObservable();
|
return _client.Repository.Statistics.GetCodeFrequency(repositoryId).ToObservable();
|
||||||
@@ -103,7 +103,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Returns the total commit counts for the owner and total commit counts in total.
|
/// Returns the total commit counts for the owner and total commit counts in total.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
public IObservable<Participation> GetParticipation(int repositoryId)
|
public IObservable<Participation> GetParticipation(int repositoryId)
|
||||||
{
|
{
|
||||||
return _client.Repository.Statistics.GetParticipation(repositoryId).ToObservable();
|
return _client.Repository.Statistics.GetParticipation(repositoryId).ToObservable();
|
||||||
@@ -125,7 +125,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Returns a list of the number of commits per hour in each day
|
/// Returns a list of the number of commits per hour in each day
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
public IObservable<PunchCard> GetPunchCard(int repositoryId)
|
public IObservable<PunchCard> GetPunchCard(int repositoryId)
|
||||||
{
|
{
|
||||||
return _client.Repository.Statistics.GetPunchCard(repositoryId).ToObservable();
|
return _client.Repository.Statistics.GetPunchCard(repositoryId).ToObservable();
|
||||||
|
|||||||
@@ -44,7 +44,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/git/tags/#get-a-tag
|
/// http://developer.github.com/v3/git/tags/#get-a-tag
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="reference">Tha sha reference of the tag</param>
|
/// <param name="reference">Tha sha reference of the tag</param>
|
||||||
public IObservable<GitTag> Get(int repositoryId, string reference)
|
public IObservable<GitTag> Get(int repositoryId, string reference)
|
||||||
{
|
{
|
||||||
@@ -77,7 +77,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/git/tags/#create-a-tag-object
|
/// http://developer.github.com/v3/git/tags/#create-a-tag-object
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="tag">The tag to create</param>
|
/// <param name="tag">The tag to create</param>
|
||||||
public IObservable<GitTag> Create(int repositoryId, NewTag tag)
|
public IObservable<GitTag> Create(int repositoryId, NewTag tag)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -44,7 +44,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/git/trees/#get-a-tree
|
/// http://developer.github.com/v3/git/trees/#get-a-tree
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="reference">The SHA that references the tree</param>
|
/// <param name="reference">The SHA that references the tree</param>
|
||||||
public IObservable<TreeResponse> Get(int repositoryId, string reference)
|
public IObservable<TreeResponse> Get(int repositoryId, string reference)
|
||||||
{
|
{
|
||||||
@@ -77,7 +77,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// https://developer.github.com/v3/git/trees/#get-a-tree-recursively
|
/// https://developer.github.com/v3/git/trees/#get-a-tree-recursively
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="reference">The SHA that references the tree</param>
|
/// <param name="reference">The SHA that references the tree</param>
|
||||||
public IObservable<TreeResponse> GetRecursive(int repositoryId, string reference)
|
public IObservable<TreeResponse> GetRecursive(int repositoryId, string reference)
|
||||||
{
|
{
|
||||||
@@ -110,7 +110,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/git/trees/#create-a-tree
|
/// http://developer.github.com/v3/git/trees/#create-a-tree
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="newTree">The value of the new tree</param>
|
/// <param name="newTree">The value of the new tree</param>
|
||||||
public IObservable<TreeResponse> Create(int repositoryId, NewTree newTree)
|
public IObservable<TreeResponse> Create(int repositoryId, NewTree newTree)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -58,11 +58,11 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// View extended details of the <see cref="GpgKey"/> for the specified id.
|
/// View extended details of the <see cref="GpgKey"/> for the specified id.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="id">The ID of the GPG key</param>
|
/// <param name="id">The Id of the GPG key</param>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://developer.github.com/v3/users/gpg_keys/#get-a-single-gpg-key">API documentation</a> for more information.
|
/// See the <a href="https://developer.github.com/v3/users/gpg_keys/#get-a-single-gpg-key">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <returns>The <see cref="GpgKey"/> for the specified ID.</returns>
|
/// <returns>The <see cref="GpgKey"/> for the specified Id.</returns>
|
||||||
public IObservable<GpgKey> Get(int id)
|
public IObservable<GpgKey> Get(int id)
|
||||||
{
|
{
|
||||||
return _client.Get(id).ToObservable();
|
return _client.Get(id).ToObservable();
|
||||||
@@ -84,9 +84,9 @@ namespace Octokit.Reactive
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Deletes the GPG key for the specified ID.
|
/// Deletes the GPG key for the specified Id.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="id">The ID of the GPG key to delete.</param>
|
/// <param name="id">The Id of the GPG key to delete.</param>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// See the <a href="https://developer.github.com/v3/users/gpg_keys/#delete-a-gpg-key">API documentation</a> for more information.
|
/// See the <a href="https://developer.github.com/v3/users/gpg_keys/#delete-a-gpg-key">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
|
|||||||
@@ -87,7 +87,7 @@ namespace Octokit.Reactive
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// https://developer.github.com/v3/users/keys/#get-a-single-public-key
|
/// https://developer.github.com/v3/users/keys/#get-a-single-public-key
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="id">The ID of the SSH key</param>
|
/// <param name="id">The Id of the SSH key</param>
|
||||||
/// <returns>View extended details for a single public key.</returns>
|
/// <returns>View extended details for a single public key.</returns>
|
||||||
public IObservable<PublicKey> Get(int id)
|
public IObservable<PublicKey> Get(int id)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -40,7 +40,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Retrieves all of the watchers for the passed repository
|
/// Retrieves all of the watchers for the passed repository
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated</exception>
|
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated</exception>
|
||||||
public IObservable<User> GetAllWatchers(int repositoryId)
|
public IObservable<User> GetAllWatchers(int repositoryId)
|
||||||
{
|
{
|
||||||
@@ -66,7 +66,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Retrieves all of the watchers for the passed repository
|
/// Retrieves all of the watchers for the passed repository
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <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's response.</param>
|
/// <param name="options">Options for changing the API's response.</param>
|
||||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated</exception>
|
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated</exception>
|
||||||
public IObservable<User> GetAllWatchers(int repositoryId, ApiOptions options)
|
public IObservable<User> GetAllWatchers(int repositoryId, ApiOptions options)
|
||||||
@@ -140,7 +140,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Check if a repository is watched by the current authenticated user
|
/// Check if a repository is watched by the current authenticated user
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated</exception>
|
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated</exception>
|
||||||
public IObservable<bool> CheckWatched(int repositoryId)
|
public IObservable<bool> CheckWatched(int repositoryId)
|
||||||
{
|
{
|
||||||
@@ -165,7 +165,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Stars a repository for the authenticated user.
|
/// Stars a repository for the authenticated user.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="newSubscription">A <see cref="NewSubscription"/> instance describing the new subscription to create</param>
|
/// <param name="newSubscription">A <see cref="NewSubscription"/> instance describing the new subscription to create</param>
|
||||||
public IObservable<Subscription> WatchRepo(int repositoryId, NewSubscription newSubscription)
|
public IObservable<Subscription> WatchRepo(int repositoryId, NewSubscription newSubscription)
|
||||||
{
|
{
|
||||||
@@ -190,7 +190,7 @@ namespace Octokit.Reactive
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Unstars a repository for the authenticated user.
|
/// Unstars a repository for the authenticated user.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
public IObservable<bool> UnwatchRepo(int repositoryId)
|
public IObservable<bool> UnwatchRepo(int repositoryId)
|
||||||
{
|
{
|
||||||
return _client.UnwatchRepo(repositoryId).ToObservable();
|
return _client.UnwatchRepo(repositoryId).ToObservable();
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ namespace Octokit
|
|||||||
/// </para>
|
/// </para>
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="authorizationsClient">The <see cref="IAuthorizationsClient" /> this method extends</param>
|
/// <param name="authorizationsClient">The <see cref="IAuthorizationsClient" /> this method extends</param>
|
||||||
/// <param name="clientId">Client ID for the OAuth application that is requesting the token</param>
|
/// <param name="clientId">Client Id for the OAuth application that is requesting the token</param>
|
||||||
/// <param name="clientSecret">The client secret</param>
|
/// <param name="clientSecret">The client secret</param>
|
||||||
/// <param name="newAuthorization">Defines the scopes and metadata for the token</param>
|
/// <param name="newAuthorization">Defines the scopes and metadata for the token</param>
|
||||||
/// <param name="twoFactorChallengeHandler">Callback used to retrieve the two-factor authentication code
|
/// <param name="twoFactorChallengeHandler">Callback used to retrieve the two-factor authentication code
|
||||||
@@ -72,7 +72,7 @@ namespace Octokit
|
|||||||
/// </para>
|
/// </para>
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="authorizationsClient">The <see cref="IAuthorizationsClient" /> this method extends</param>
|
/// <param name="authorizationsClient">The <see cref="IAuthorizationsClient" /> this method extends</param>
|
||||||
/// <param name="clientId">Client ID for the OAuth application that is requesting the token</param>
|
/// <param name="clientId">Client Id for the OAuth application that is requesting the token</param>
|
||||||
/// <param name="clientSecret">The client secret</param>
|
/// <param name="clientSecret">The client secret</param>
|
||||||
/// <param name="newAuthorization">Defines the scopes and metadata for the token</param>
|
/// <param name="newAuthorization">Defines the scopes and metadata for the token</param>
|
||||||
/// <param name="twoFactorChallengeHandler">Callback used to retrieve the two-factor authentication code
|
/// <param name="twoFactorChallengeHandler">Callback used to retrieve the two-factor authentication code
|
||||||
|
|||||||
@@ -35,7 +35,7 @@ namespace Octokit
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets all the available assignees (owner + collaborators) to which issues may be assigned.
|
/// Gets all the available assignees (owner + collaborators) to which issues may be assigned.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
public Task<IReadOnlyList<User>> GetAllForRepository(int repositoryId)
|
public Task<IReadOnlyList<User>> GetAllForRepository(int repositoryId)
|
||||||
{
|
{
|
||||||
return GetAllForRepository(repositoryId, ApiOptions.None);
|
return GetAllForRepository(repositoryId, ApiOptions.None);
|
||||||
@@ -61,7 +61,7 @@ namespace Octokit
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets all the available assignees (owner + collaborators) to which issues may be assigned.
|
/// Gets all the available assignees (owner + collaborators) to which issues may be assigned.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="options">The options to change API's response.</param>
|
/// <param name="options">The options to change API's response.</param>
|
||||||
public Task<IReadOnlyList<User>> GetAllForRepository(int repositoryId, ApiOptions options)
|
public Task<IReadOnlyList<User>> GetAllForRepository(int repositoryId, ApiOptions options)
|
||||||
{
|
{
|
||||||
@@ -98,7 +98,7 @@ namespace Octokit
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Checks to see if a user is an assignee for a repository.
|
/// Checks to see if a user is an assignee for a repository.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="assignee">Username of the prospective assignee</param>
|
/// <param name="assignee">Username of the prospective assignee</param>
|
||||||
public async Task<bool> CheckAssignee(int repositoryId, string assignee)
|
public async Task<bool> CheckAssignee(int repositoryId, string assignee)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -66,7 +66,7 @@ namespace Octokit
|
|||||||
/// This method requires authentication.
|
/// This method requires authentication.
|
||||||
/// See the <a href="http://developer.github.com/v3/oauth/#get-a-single-authorization">API documentation</a> for more information.
|
/// See the <a href="http://developer.github.com/v3/oauth/#get-a-single-authorization">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="id">The ID of the <see cref="Authorization"/> to get</param>
|
/// <param name="id">The Id of the <see cref="Authorization"/> to get</param>
|
||||||
/// <exception cref="AuthorizationException">
|
/// <exception cref="AuthorizationException">
|
||||||
/// Thrown when the current user does not have permission to make this request.
|
/// Thrown when the current user does not have permission to make this request.
|
||||||
/// </exception>
|
/// </exception>
|
||||||
@@ -155,7 +155,7 @@ namespace Octokit
|
|||||||
/// This method requires authentication.
|
/// This method requires authentication.
|
||||||
/// See the <a href="http://developer.github.com/v3/oauth/#get-or-create-an-authorization-for-a-specific-app">API documentation</a> for more information.
|
/// See the <a href="http://developer.github.com/v3/oauth/#get-or-create-an-authorization-for-a-specific-app">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="clientId">Client ID of the OAuth application for the token</param>
|
/// <param name="clientId">Client Id of the OAuth application for the token</param>
|
||||||
/// <param name="clientSecret">The client secret</param>
|
/// <param name="clientSecret">The client secret</param>
|
||||||
/// <param name="newAuthorization">Describes the new authorization to create</param>
|
/// <param name="newAuthorization">Describes the new authorization to create</param>
|
||||||
/// <exception cref="AuthorizationException">
|
/// <exception cref="AuthorizationException">
|
||||||
@@ -198,7 +198,7 @@ namespace Octokit
|
|||||||
/// This method requires authentication.
|
/// This method requires authentication.
|
||||||
/// See the <a href="http://developer.github.com/v3/oauth/#get-or-create-an-authorization-for-a-specific-app">API documentation</a> for more information.
|
/// See the <a href="http://developer.github.com/v3/oauth/#get-or-create-an-authorization-for-a-specific-app">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="clientId">Client ID of the OAuth application for the token</param>
|
/// <param name="clientId">Client Id of the OAuth application for the token</param>
|
||||||
/// <param name="clientSecret">The client secret</param>
|
/// <param name="clientSecret">The client secret</param>
|
||||||
/// <param name="twoFactorAuthenticationCode">The two-factor authentication code in response to the current user's previous challenge</param>
|
/// <param name="twoFactorAuthenticationCode">The two-factor authentication code in response to the current user's previous challenge</param>
|
||||||
/// <param name="newAuthorization">Describes the new authorization to create</param>
|
/// <param name="newAuthorization">Describes the new authorization to create</param>
|
||||||
@@ -243,7 +243,7 @@ namespace Octokit
|
|||||||
/// This method requires authentication.
|
/// This method requires authentication.
|
||||||
/// See the <a href="http://developer.github.com/v3/oauth/#get-or-create-an-authorization-for-a-specific-app">API documentation</a> for more information.
|
/// See the <a href="http://developer.github.com/v3/oauth/#get-or-create-an-authorization-for-a-specific-app">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="clientId">Client ID of the OAuth application for the token</param>
|
/// <param name="clientId">Client Id of the OAuth application for the token</param>
|
||||||
/// <param name="clientSecret">The client secret</param>
|
/// <param name="clientSecret">The client secret</param>
|
||||||
/// <param name="newAuthorization">Describes the new authorization to create</param>
|
/// <param name="newAuthorization">Describes the new authorization to create</param>
|
||||||
/// <exception cref="AuthorizationException">
|
/// <exception cref="AuthorizationException">
|
||||||
@@ -284,7 +284,7 @@ namespace Octokit
|
|||||||
/// This method requires authentication.
|
/// This method requires authentication.
|
||||||
/// See the <a href="http://developer.github.com/v3/oauth/#get-or-create-an-authorization-for-a-specific-app">API documentation</a> for more information.
|
/// See the <a href="http://developer.github.com/v3/oauth/#get-or-create-an-authorization-for-a-specific-app">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="clientId">Client ID of the OAuth application for the token</param>
|
/// <param name="clientId">Client Id of the OAuth application for the token</param>
|
||||||
/// <param name="clientSecret">The client secret</param>
|
/// <param name="clientSecret">The client secret</param>
|
||||||
/// <param name="newAuthorization">Describes the new authorization to create</param>
|
/// <param name="newAuthorization">Describes the new authorization to create</param>
|
||||||
/// <param name="twoFactorAuthenticationCode">The two-factor authentication code in response to the current user's previous challenge</param>
|
/// <param name="twoFactorAuthenticationCode">The two-factor authentication code in response to the current user's previous challenge</param>
|
||||||
@@ -335,7 +335,7 @@ namespace Octokit
|
|||||||
/// This method requires authentication.
|
/// This method requires authentication.
|
||||||
/// See the <a href="https://developer.github.com/v3/oauth_authorizations/#check-an-authorization">API documentation</a> for more information.
|
/// See the <a href="https://developer.github.com/v3/oauth_authorizations/#check-an-authorization">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="clientId">Client ID of the OAuth application for the token</param>
|
/// <param name="clientId">Client Id of the OAuth application for the token</param>
|
||||||
/// <param name="accessToken">The OAuth token to check</param>
|
/// <param name="accessToken">The OAuth token to check</param>
|
||||||
/// <returns>The valid <see cref="ApplicationAuthorization"/>.</returns>
|
/// <returns>The valid <see cref="ApplicationAuthorization"/>.</returns>
|
||||||
public Task<ApplicationAuthorization> CheckApplicationAuthentication(string clientId, string accessToken)
|
public Task<ApplicationAuthorization> CheckApplicationAuthentication(string clientId, string accessToken)
|
||||||
@@ -412,7 +412,7 @@ namespace Octokit
|
|||||||
/// See the <a href="http://developer.github.com/v3/oauth/#update-an-existing-authorization">API
|
/// See the <a href="http://developer.github.com/v3/oauth/#update-an-existing-authorization">API
|
||||||
/// documentation</a> for more details.
|
/// documentation</a> for more details.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="id">ID of the <see cref="Authorization"/> to update</param>
|
/// <param name="id">Id of the <see cref="Authorization"/> to update</param>
|
||||||
/// <param name="authorizationUpdate">Describes the changes to make to the authorization</param>
|
/// <param name="authorizationUpdate">Describes the changes to make to the authorization</param>
|
||||||
/// <exception cref="AuthorizationException">
|
/// <exception cref="AuthorizationException">
|
||||||
/// Thrown when the current user does not have permission to make the request.
|
/// Thrown when the current user does not have permission to make the request.
|
||||||
@@ -436,7 +436,7 @@ namespace Octokit
|
|||||||
/// See the <a href="http://developer.github.com/v3/oauth/#delete-an-authorization">API
|
/// See the <a href="http://developer.github.com/v3/oauth/#delete-an-authorization">API
|
||||||
/// documentation</a> for more details.
|
/// documentation</a> for more details.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="id">The system-wide ID of the authorization to delete</param>
|
/// <param name="id">The system-wide Id of the authorization to delete</param>
|
||||||
/// <exception cref="AuthorizationException">
|
/// <exception cref="AuthorizationException">
|
||||||
/// Thrown when the current user does not have permission to make the request.
|
/// Thrown when the current user does not have permission to make the request.
|
||||||
/// </exception>
|
/// </exception>
|
||||||
@@ -455,7 +455,7 @@ namespace Octokit
|
|||||||
/// See the <a href="http://developer.github.com/v3/oauth/#delete-an-authorization">API
|
/// See the <a href="http://developer.github.com/v3/oauth/#delete-an-authorization">API
|
||||||
/// documentation</a> for more details.
|
/// documentation</a> for more details.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="id">The system-wide ID of the authorization to delete</param>
|
/// <param name="id">The system-wide Id of the authorization to delete</param>
|
||||||
/// <param name="twoFactorAuthenticationCode">Two factor authorization code</param>
|
/// <param name="twoFactorAuthenticationCode">Two factor authorization code</param>
|
||||||
/// <exception cref="AuthorizationException">
|
/// <exception cref="AuthorizationException">
|
||||||
/// Thrown when the current user does not have permission to make the request.
|
/// Thrown when the current user does not have permission to make the request.
|
||||||
|
|||||||
@@ -43,7 +43,7 @@ namespace Octokit
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/git/blobs/#get-a-blob
|
/// http://developer.github.com/v3/git/blobs/#get-a-blob
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="reference">The SHA of the blob</param>
|
/// <param name="reference">The SHA of the blob</param>
|
||||||
public Task<Blob> Get(int repositoryId, string reference)
|
public Task<Blob> Get(int repositoryId, string reference)
|
||||||
{
|
{
|
||||||
@@ -76,7 +76,7 @@ namespace Octokit
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/git/blobs/#create-a-blob
|
/// http://developer.github.com/v3/git/blobs/#create-a-blob
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="newBlob">The new Blob</param>
|
/// <param name="newBlob">The new Blob</param>
|
||||||
public Task<BlobReference> Create(int repositoryId, NewBlob newBlob)
|
public Task<BlobReference> Create(int repositoryId, NewBlob newBlob)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -45,7 +45,7 @@ namespace Octokit
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// https://developer.github.com/v3/repos/statuses/#list-statuses-for-a-specific-ref
|
/// https://developer.github.com/v3/repos/statuses/#list-statuses-for-a-specific-ref
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="reference">The reference (SHA, branch name, or tag name) to list commits for</param>
|
/// <param name="reference">The reference (SHA, branch name, or tag name) to list commits for</param>
|
||||||
public Task<IReadOnlyList<CommitStatus>> GetAll(int repositoryId, string reference)
|
public Task<IReadOnlyList<CommitStatus>> GetAll(int repositoryId, string reference)
|
||||||
{
|
{
|
||||||
@@ -82,7 +82,7 @@ namespace Octokit
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// https://developer.github.com/v3/repos/statuses/#list-statuses-for-a-specific-ref
|
/// https://developer.github.com/v3/repos/statuses/#list-statuses-for-a-specific-ref
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="reference">The reference (SHA, branch name, or tag name) to list commits for</param>
|
/// <param name="reference">The reference (SHA, branch name, or tag name) to list commits for</param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
public Task<IReadOnlyList<CommitStatus>> GetAll(int repositoryId, string reference, ApiOptions options)
|
public Task<IReadOnlyList<CommitStatus>> GetAll(int repositoryId, string reference, ApiOptions options)
|
||||||
@@ -119,7 +119,7 @@ namespace Octokit
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// https://developer.github.com/v3/repos/statuses/#get-the-combined-status-for-a-specific-ref
|
/// https://developer.github.com/v3/repos/statuses/#get-the-combined-status-for-a-specific-ref
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="reference">The reference (SHA, branch name, or tag name) to list commits for</param>
|
/// <param name="reference">The reference (SHA, branch name, or tag name) to list commits for</param>
|
||||||
public Task<CombinedCommitStatus> GetCombined(int repositoryId, string reference)
|
public Task<CombinedCommitStatus> GetCombined(int repositoryId, string reference)
|
||||||
{
|
{
|
||||||
@@ -154,7 +154,7 @@ namespace Octokit
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// https://developer.github.com/v3/repos/statuses/#create-a-status
|
/// https://developer.github.com/v3/repos/statuses/#create-a-status
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="reference">The reference (SHA, branch name, or tag name) to list commits for</param>
|
/// <param name="reference">The reference (SHA, branch name, or tag name) to list commits for</param>
|
||||||
/// <param name="newCommitStatus">The commit status to create</param>
|
/// <param name="newCommitStatus">The commit status to create</param>
|
||||||
public Task<CommitStatus> Create(int repositoryId, string reference, NewCommitStatus newCommitStatus)
|
public Task<CommitStatus> Create(int repositoryId, string reference, NewCommitStatus newCommitStatus)
|
||||||
|
|||||||
@@ -43,7 +43,7 @@ namespace Octokit
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/git/commits/#get-a-commit
|
/// http://developer.github.com/v3/git/commits/#get-a-commit
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="reference">Tha sha reference of the commit</param>
|
/// <param name="reference">Tha sha reference of the commit</param>
|
||||||
public Task<Commit> Get(int repositoryId, string reference)
|
public Task<Commit> Get(int repositoryId, string reference)
|
||||||
{
|
{
|
||||||
@@ -76,7 +76,7 @@ namespace Octokit
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/git/commits/#create-a-commit
|
/// http://developer.github.com/v3/git/commits/#create-a-commit
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="commit">The commit to create</param>
|
/// <param name="commit">The commit to create</param>
|
||||||
public Task<Commit> Create(int repositoryId, NewCommit commit)
|
public Task<Commit> Create(int repositoryId, NewCommit commit)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -42,7 +42,7 @@ namespace Octokit
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/repos/deployments/#list-deployment-statuses
|
/// http://developer.github.com/v3/repos/deployments/#list-deployment-statuses
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository.</param>
|
/// <param name="repositoryId">The Id of the repository.</param>
|
||||||
/// <param name="deploymentId">The id of the deployment.</param>
|
/// <param name="deploymentId">The id of the deployment.</param>
|
||||||
public Task<IReadOnlyList<DeploymentStatus>> GetAll(int repositoryId, int deploymentId)
|
public Task<IReadOnlyList<DeploymentStatus>> GetAll(int repositoryId, int deploymentId)
|
||||||
{
|
{
|
||||||
@@ -79,7 +79,7 @@ namespace Octokit
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/repos/deployments/#list-deployment-statuses
|
/// http://developer.github.com/v3/repos/deployments/#list-deployment-statuses
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository.</param>
|
/// <param name="repositoryId">The Id of the repository.</param>
|
||||||
/// <param name="deploymentId">The id of the deployment.</param>
|
/// <param name="deploymentId">The id of the deployment.</param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
public Task<IReadOnlyList<DeploymentStatus>> GetAll(int repositoryId, int deploymentId, ApiOptions options)
|
public Task<IReadOnlyList<DeploymentStatus>> GetAll(int repositoryId, int deploymentId, ApiOptions options)
|
||||||
@@ -118,7 +118,7 @@ namespace Octokit
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/repos/deployments/#create-a-deployment-status
|
/// http://developer.github.com/v3/repos/deployments/#create-a-deployment-status
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository.</param>
|
/// <param name="repositoryId">The Id of the repository.</param>
|
||||||
/// <param name="deploymentId">The id of the deployment.</param>
|
/// <param name="deploymentId">The id of the deployment.</param>
|
||||||
/// <param name="newDeploymentStatus">The new deployment status to create.</param>
|
/// <param name="newDeploymentStatus">The new deployment status to create.</param>
|
||||||
public Task<DeploymentStatus> Create(int repositoryId, int deploymentId, NewDeploymentStatus newDeploymentStatus)
|
public Task<DeploymentStatus> Create(int repositoryId, int deploymentId, NewDeploymentStatus newDeploymentStatus)
|
||||||
|
|||||||
@@ -46,7 +46,7 @@ namespace Octokit
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/repos/deployments/#list-deployments
|
/// http://developer.github.com/v3/repos/deployments/#list-deployments
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
public Task<IReadOnlyList<Deployment>> GetAll(int repositoryId)
|
public Task<IReadOnlyList<Deployment>> GetAll(int repositoryId)
|
||||||
{
|
{
|
||||||
return GetAll(repositoryId, ApiOptions.None);
|
return GetAll(repositoryId, ApiOptions.None);
|
||||||
@@ -81,7 +81,7 @@ namespace Octokit
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/repos/deployments/#list-deployments
|
/// http://developer.github.com/v3/repos/deployments/#list-deployments
|
||||||
/// </remarks>
|
/// </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>
|
||||||
public Task<IReadOnlyList<Deployment>> GetAll(int repositoryId, ApiOptions options)
|
public Task<IReadOnlyList<Deployment>> GetAll(int repositoryId, ApiOptions options)
|
||||||
{
|
{
|
||||||
@@ -118,7 +118,7 @@ namespace Octokit
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/repos/deployments/#create-a-deployment
|
/// http://developer.github.com/v3/repos/deployments/#create-a-deployment
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="newDeployment">A <see cref="NewDeployment"/> instance describing the new deployment to create</param>
|
/// <param name="newDeployment">A <see cref="NewDeployment"/> instance describing the new deployment to create</param>
|
||||||
public Task<Deployment> Create(int repositoryId, NewDeployment newDeployment)
|
public Task<Deployment> Create(int repositoryId, NewDeployment newDeployment)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -68,7 +68,7 @@ namespace Octokit
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/activity/events/#list-issue-events-for-a-repository
|
/// http://developer.github.com/v3/activity/events/#list-issue-events-for-a-repository
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
public Task<IReadOnlyList<Activity>> GetAllForRepository(int repositoryId)
|
public Task<IReadOnlyList<Activity>> GetAllForRepository(int repositoryId)
|
||||||
{
|
{
|
||||||
return GetAllForRepository(repositoryId, ApiOptions.None);
|
return GetAllForRepository(repositoryId, ApiOptions.None);
|
||||||
@@ -98,7 +98,7 @@ namespace Octokit
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/activity/events/#list-issue-events-for-a-repository
|
/// http://developer.github.com/v3/activity/events/#list-issue-events-for-a-repository
|
||||||
/// </remarks>
|
/// </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>
|
||||||
public Task<IReadOnlyList<Activity>> GetAllForRepository(int repositoryId, ApiOptions options)
|
public Task<IReadOnlyList<Activity>> GetAllForRepository(int repositoryId, ApiOptions options)
|
||||||
{
|
{
|
||||||
@@ -129,7 +129,7 @@ namespace Octokit
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/activity/events/#list-issue-events-for-a-repository
|
/// http://developer.github.com/v3/activity/events/#list-issue-events-for-a-repository
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
public Task<IReadOnlyList<Activity>> GetAllIssuesForRepository(int repositoryId)
|
public Task<IReadOnlyList<Activity>> GetAllIssuesForRepository(int repositoryId)
|
||||||
{
|
{
|
||||||
return GetAllIssuesForRepository(repositoryId, ApiOptions.None);
|
return GetAllIssuesForRepository(repositoryId, ApiOptions.None);
|
||||||
@@ -159,7 +159,7 @@ namespace Octokit
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/activity/events/#list-issue-events-for-a-repository
|
/// http://developer.github.com/v3/activity/events/#list-issue-events-for-a-repository
|
||||||
/// </remarks>
|
/// </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>
|
||||||
public Task<IReadOnlyList<Activity>> GetAllIssuesForRepository(int repositoryId, ApiOptions options)
|
public Task<IReadOnlyList<Activity>> GetAllIssuesForRepository(int repositoryId, ApiOptions options)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -21,7 +21,7 @@ namespace Octokit
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets all the available assignees (owner + collaborators) to which issues may be assigned.
|
/// Gets all the available assignees (owner + collaborators) to which issues may be assigned.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
Task<IReadOnlyList<User>> GetAllForRepository(int repositoryId);
|
Task<IReadOnlyList<User>> GetAllForRepository(int repositoryId);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -35,7 +35,7 @@ namespace Octokit
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets all the available assignees (owner + collaborators) to which issues may be assigned.
|
/// Gets all the available assignees (owner + collaborators) to which issues may be assigned.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="options">The options to change API's response.</param>
|
/// <param name="options">The options to change API's response.</param>
|
||||||
Task<IReadOnlyList<User>> GetAllForRepository(int repositoryId, ApiOptions options);
|
Task<IReadOnlyList<User>> GetAllForRepository(int repositoryId, ApiOptions options);
|
||||||
|
|
||||||
@@ -50,7 +50,7 @@ namespace Octokit
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Checks to see if a user is an assignee for a repository.
|
/// Checks to see if a user is an assignee for a repository.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="assignee">Username of the prospective assignee</param>
|
/// <param name="assignee">Username of the prospective assignee</param>
|
||||||
Task<bool> CheckAssignee(int repositoryId, string assignee);
|
Task<bool> CheckAssignee(int repositoryId, string assignee);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -55,7 +55,7 @@ namespace Octokit
|
|||||||
/// This method requires authentication.
|
/// This method requires authentication.
|
||||||
/// See the <a href="http://developer.github.com/v3/oauth/#get-a-single-authorization">API documentation</a> for more information.
|
/// See the <a href="http://developer.github.com/v3/oauth/#get-a-single-authorization">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="id">The ID of the <see cref="Authorization"/> to get</param>
|
/// <param name="id">The Id of the <see cref="Authorization"/> to get</param>
|
||||||
/// <exception cref="AuthorizationException">
|
/// <exception cref="AuthorizationException">
|
||||||
/// Thrown when the current user does not have permission to make this request.
|
/// Thrown when the current user does not have permission to make this request.
|
||||||
/// </exception>
|
/// </exception>
|
||||||
@@ -110,7 +110,7 @@ namespace Octokit
|
|||||||
/// This method requires authentication.
|
/// This method requires authentication.
|
||||||
/// See the <a href="http://developer.github.com/v3/oauth/#get-or-create-an-authorization-for-a-specific-app">API documentation</a> for more information.
|
/// See the <a href="http://developer.github.com/v3/oauth/#get-or-create-an-authorization-for-a-specific-app">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="clientId">Client ID of the OAuth application for the token</param>
|
/// <param name="clientId">Client Id of the OAuth application for the token</param>
|
||||||
/// <param name="clientSecret">The client secret</param>
|
/// <param name="clientSecret">The client secret</param>
|
||||||
/// <param name="newAuthorization">Describes the new authorization to create</param>
|
/// <param name="newAuthorization">Describes the new authorization to create</param>
|
||||||
/// <exception cref="AuthorizationException">
|
/// <exception cref="AuthorizationException">
|
||||||
@@ -134,7 +134,7 @@ namespace Octokit
|
|||||||
/// This method requires authentication.
|
/// This method requires authentication.
|
||||||
/// See the <a href="http://developer.github.com/v3/oauth/#get-or-create-an-authorization-for-a-specific-app">API documentation</a> for more information.
|
/// See the <a href="http://developer.github.com/v3/oauth/#get-or-create-an-authorization-for-a-specific-app">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="clientId">Client ID of the OAuth application for the token</param>
|
/// <param name="clientId">Client Id of the OAuth application for the token</param>
|
||||||
/// <param name="clientSecret">The client secret</param>
|
/// <param name="clientSecret">The client secret</param>
|
||||||
/// <param name="twoFactorAuthenticationCode">The two-factor authentication code in response to the current user's previous challenge</param>
|
/// <param name="twoFactorAuthenticationCode">The two-factor authentication code in response to the current user's previous challenge</param>
|
||||||
/// <param name="newAuthorization">Describes the new authorization to create</param>
|
/// <param name="newAuthorization">Describes the new authorization to create</param>
|
||||||
@@ -160,7 +160,7 @@ namespace Octokit
|
|||||||
/// This method requires authentication.
|
/// This method requires authentication.
|
||||||
/// See the <a href="http://developer.github.com/v3/oauth/#get-or-create-an-authorization-for-a-specific-app">API documentation</a> for more information.
|
/// See the <a href="http://developer.github.com/v3/oauth/#get-or-create-an-authorization-for-a-specific-app">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="clientId">Client ID of the OAuth application for the token</param>
|
/// <param name="clientId">Client Id of the OAuth application for the token</param>
|
||||||
/// <param name="clientSecret">The client secret</param>
|
/// <param name="clientSecret">The client secret</param>
|
||||||
/// <param name="newAuthorization">Describes the new authorization to create</param>
|
/// <param name="newAuthorization">Describes the new authorization to create</param>
|
||||||
/// <exception cref="AuthorizationException">
|
/// <exception cref="AuthorizationException">
|
||||||
@@ -184,7 +184,7 @@ namespace Octokit
|
|||||||
/// This method requires authentication.
|
/// This method requires authentication.
|
||||||
/// See the <a href="http://developer.github.com/v3/oauth/#get-or-create-an-authorization-for-a-specific-app">API documentation</a> for more information.
|
/// See the <a href="http://developer.github.com/v3/oauth/#get-or-create-an-authorization-for-a-specific-app">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="clientId">Client ID of the OAuth application for the token</param>
|
/// <param name="clientId">Client Id of the OAuth application for the token</param>
|
||||||
/// <param name="clientSecret">The client secret</param>
|
/// <param name="clientSecret">The client secret</param>
|
||||||
/// <param name="newAuthorization">Describes the new authorization to create</param>
|
/// <param name="newAuthorization">Describes the new authorization to create</param>
|
||||||
/// <param name="twoFactorAuthenticationCode">The two-factor authentication code in response to the current user's previous challenge</param>
|
/// <param name="twoFactorAuthenticationCode">The two-factor authentication code in response to the current user's previous challenge</param>
|
||||||
@@ -209,7 +209,7 @@ namespace Octokit
|
|||||||
/// This method requires authentication.
|
/// This method requires authentication.
|
||||||
/// See the <a href="https://developer.github.com/v3/oauth_authorizations/#check-an-authorization">API documentation</a> for more information.
|
/// See the <a href="https://developer.github.com/v3/oauth_authorizations/#check-an-authorization">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="clientId">Client ID of the OAuth application for the token</param>
|
/// <param name="clientId">Client Id of the OAuth application for the token</param>
|
||||||
/// <param name="accessToken">The OAuth token to check</param>
|
/// <param name="accessToken">The OAuth token to check</param>
|
||||||
/// <returns>The valid <see cref="ApplicationAuthorization"/>.</returns>
|
/// <returns>The valid <see cref="ApplicationAuthorization"/>.</returns>
|
||||||
Task<ApplicationAuthorization> CheckApplicationAuthentication(string clientId, string accessToken);
|
Task<ApplicationAuthorization> CheckApplicationAuthentication(string clientId, string accessToken);
|
||||||
@@ -258,7 +258,7 @@ namespace Octokit
|
|||||||
/// See the <a href="http://developer.github.com/v3/oauth/#update-an-existing-authorization">API
|
/// See the <a href="http://developer.github.com/v3/oauth/#update-an-existing-authorization">API
|
||||||
/// documentation</a> for more details.
|
/// documentation</a> for more details.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="id">ID of the <see cref="Authorization"/> to update</param>
|
/// <param name="id">Id of the <see cref="Authorization"/> to update</param>
|
||||||
/// <param name="authorizationUpdate">Describes the changes to make to the authorization</param>
|
/// <param name="authorizationUpdate">Describes the changes to make to the authorization</param>
|
||||||
/// <exception cref="AuthorizationException">
|
/// <exception cref="AuthorizationException">
|
||||||
/// Thrown when the current user does not have permission to make the request.
|
/// Thrown when the current user does not have permission to make the request.
|
||||||
@@ -275,7 +275,7 @@ namespace Octokit
|
|||||||
/// See the <a href="http://developer.github.com/v3/oauth/#delete-an-authorization">API
|
/// See the <a href="http://developer.github.com/v3/oauth/#delete-an-authorization">API
|
||||||
/// documentation</a> for more details.
|
/// documentation</a> for more details.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="id">The system-wide ID of the authorization to delete</param>
|
/// <param name="id">The system-wide Id of the authorization to delete</param>
|
||||||
/// <exception cref="AuthorizationException">
|
/// <exception cref="AuthorizationException">
|
||||||
/// Thrown when the current user does not have permission to make the request.
|
/// Thrown when the current user does not have permission to make the request.
|
||||||
/// </exception>
|
/// </exception>
|
||||||
@@ -291,7 +291,7 @@ namespace Octokit
|
|||||||
/// See the <a href="http://developer.github.com/v3/oauth/#delete-an-authorization">API
|
/// See the <a href="http://developer.github.com/v3/oauth/#delete-an-authorization">API
|
||||||
/// documentation</a> for more details.
|
/// documentation</a> for more details.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="id">The system-wide ID of the authorization to delete</param>
|
/// <param name="id">The system-wide Id of the authorization to delete</param>
|
||||||
/// <param name="twoFactorAuthenticationCode">Two factor authorization code</param>
|
/// <param name="twoFactorAuthenticationCode">Two factor authorization code</param>
|
||||||
/// <exception cref="AuthorizationException">
|
/// <exception cref="AuthorizationException">
|
||||||
/// Thrown when the current user does not have permission to make the request.
|
/// Thrown when the current user does not have permission to make the request.
|
||||||
|
|||||||
@@ -28,7 +28,7 @@ namespace Octokit
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/git/blobs/#get-a-blob
|
/// http://developer.github.com/v3/git/blobs/#get-a-blob
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="reference">The SHA of the blob</param>
|
/// <param name="reference">The SHA of the blob</param>
|
||||||
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get")]
|
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get")]
|
||||||
Task<Blob> Get(int repositoryId, string reference);
|
Task<Blob> Get(int repositoryId, string reference);
|
||||||
@@ -50,7 +50,7 @@ namespace Octokit
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/git/blobs/#create-a-blob
|
/// http://developer.github.com/v3/git/blobs/#create-a-blob
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="newBlob">The new Blob</param>
|
/// <param name="newBlob">The new Blob</param>
|
||||||
Task<BlobReference> Create(int repositoryId, NewBlob newBlob);
|
Task<BlobReference> Create(int repositoryId, NewBlob newBlob);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -30,7 +30,7 @@ namespace Octokit
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// https://developer.github.com/v3/repos/statuses/#list-statuses-for-a-specific-ref
|
/// https://developer.github.com/v3/repos/statuses/#list-statuses-for-a-specific-ref
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="reference">The reference (SHA, branch name, or tag name) to list commits for</param>
|
/// <param name="reference">The reference (SHA, branch name, or tag name) to list commits for</param>
|
||||||
Task<IReadOnlyList<CommitStatus>> GetAll(int repositoryId, string reference);
|
Task<IReadOnlyList<CommitStatus>> GetAll(int repositoryId, string reference);
|
||||||
|
|
||||||
@@ -54,7 +54,7 @@ namespace Octokit
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// https://developer.github.com/v3/repos/statuses/#list-statuses-for-a-specific-ref
|
/// https://developer.github.com/v3/repos/statuses/#list-statuses-for-a-specific-ref
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="reference">The reference (SHA, branch name, or tag name) to list commits for</param>
|
/// <param name="reference">The reference (SHA, branch name, or tag name) to list commits for</param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
Task<IReadOnlyList<CommitStatus>> GetAll(int repositoryId, string reference, ApiOptions options);
|
Task<IReadOnlyList<CommitStatus>> GetAll(int repositoryId, string reference, ApiOptions options);
|
||||||
@@ -78,7 +78,7 @@ namespace Octokit
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// https://developer.github.com/v3/repos/statuses/#get-the-combined-status-for-a-specific-ref
|
/// https://developer.github.com/v3/repos/statuses/#get-the-combined-status-for-a-specific-ref
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="reference">The reference (SHA, branch name, or tag name) to list commits for</param>
|
/// <param name="reference">The reference (SHA, branch name, or tag name) to list commits for</param>
|
||||||
Task<CombinedCommitStatus> GetCombined(int repositoryId, string reference);
|
Task<CombinedCommitStatus> GetCombined(int repositoryId, string reference);
|
||||||
|
|
||||||
@@ -100,7 +100,7 @@ namespace Octokit
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// https://developer.github.com/v3/repos/statuses/#create-a-status
|
/// https://developer.github.com/v3/repos/statuses/#create-a-status
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="reference">The reference (SHA, branch name, or tag name) to list commits for</param>
|
/// <param name="reference">The reference (SHA, branch name, or tag name) to list commits for</param>
|
||||||
/// <param name="newCommitStatus">The commit status to create</param>
|
/// <param name="newCommitStatus">The commit status to create</param>
|
||||||
Task<CommitStatus> Create(int repositoryId, string reference, NewCommitStatus newCommitStatus);
|
Task<CommitStatus> Create(int repositoryId, string reference, NewCommitStatus newCommitStatus);
|
||||||
|
|||||||
@@ -30,7 +30,7 @@ namespace Octokit
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/git/commits/#get-a-commit
|
/// http://developer.github.com/v3/git/commits/#get-a-commit
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="reference">Tha sha reference of the commit</param>
|
/// <param name="reference">Tha sha reference of the commit</param>
|
||||||
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get",
|
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get",
|
||||||
Justification = "Method makes a network request")]
|
Justification = "Method makes a network request")]
|
||||||
@@ -53,7 +53,7 @@ namespace Octokit
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/git/commits/#create-a-commit
|
/// http://developer.github.com/v3/git/commits/#create-a-commit
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="commit">The commit to create</param>
|
/// <param name="commit">The commit to create</param>
|
||||||
Task<Commit> Create(int repositoryId, NewCommit commit);
|
Task<Commit> Create(int repositoryId, NewCommit commit);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -31,7 +31,7 @@ namespace Octokit
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/repos/deployments/#list-deployment-statuses
|
/// http://developer.github.com/v3/repos/deployments/#list-deployment-statuses
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository.</param>
|
/// <param name="repositoryId">The Id of the repository.</param>
|
||||||
/// <param name="deploymentId">The id of the deployment.</param>
|
/// <param name="deploymentId">The id of the deployment.</param>
|
||||||
Task<IReadOnlyList<DeploymentStatus>> GetAll(int repositoryId, int deploymentId);
|
Task<IReadOnlyList<DeploymentStatus>> GetAll(int repositoryId, int deploymentId);
|
||||||
|
|
||||||
@@ -55,7 +55,7 @@ namespace Octokit
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/repos/deployments/#list-deployment-statuses
|
/// http://developer.github.com/v3/repos/deployments/#list-deployment-statuses
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository.</param>
|
/// <param name="repositoryId">The Id of the repository.</param>
|
||||||
/// <param name="deploymentId">The id of the deployment.</param>
|
/// <param name="deploymentId">The id of the deployment.</param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
Task<IReadOnlyList<DeploymentStatus>> GetAll(int repositoryId, int deploymentId, ApiOptions options);
|
Task<IReadOnlyList<DeploymentStatus>> GetAll(int repositoryId, int deploymentId, ApiOptions options);
|
||||||
@@ -80,7 +80,7 @@ namespace Octokit
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/repos/deployments/#create-a-deployment-status
|
/// http://developer.github.com/v3/repos/deployments/#create-a-deployment-status
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository.</param>
|
/// <param name="repositoryId">The Id of the repository.</param>
|
||||||
/// <param name="deploymentId">The id of the deployment.</param>
|
/// <param name="deploymentId">The id of the deployment.</param>
|
||||||
/// <param name="newDeploymentStatus">The new deployment status to create.</param>
|
/// <param name="newDeploymentStatus">The new deployment status to create.</param>
|
||||||
Task<DeploymentStatus> Create(int repositoryId, int deploymentId, NewDeploymentStatus newDeploymentStatus);
|
Task<DeploymentStatus> Create(int repositoryId, int deploymentId, NewDeploymentStatus newDeploymentStatus);
|
||||||
|
|||||||
@@ -30,7 +30,7 @@ namespace Octokit
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/repos/deployments/#list-deployments
|
/// http://developer.github.com/v3/repos/deployments/#list-deployments
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
Task<IReadOnlyList<Deployment>> GetAll(int repositoryId);
|
Task<IReadOnlyList<Deployment>> GetAll(int repositoryId);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -52,7 +52,7 @@ namespace Octokit
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/repos/deployments/#list-deployments
|
/// http://developer.github.com/v3/repos/deployments/#list-deployments
|
||||||
/// </remarks>
|
/// </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>
|
||||||
Task<IReadOnlyList<Deployment>> GetAll(int repositoryId, ApiOptions options);
|
Task<IReadOnlyList<Deployment>> GetAll(int repositoryId, ApiOptions options);
|
||||||
|
|
||||||
@@ -75,7 +75,7 @@ namespace Octokit
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/repos/deployments/#create-a-deployment
|
/// http://developer.github.com/v3/repos/deployments/#create-a-deployment
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="newDeployment">A <see cref="NewDeployment"/> instance describing the new deployment to create</param>
|
/// <param name="newDeployment">A <see cref="NewDeployment"/> instance describing the new deployment to create</param>
|
||||||
Task<Deployment> Create(int repositoryId, NewDeployment newDeployment);
|
Task<Deployment> Create(int repositoryId, NewDeployment newDeployment);
|
||||||
|
|
||||||
|
|||||||
@@ -46,7 +46,7 @@ namespace Octokit
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/activity/events/#list-issue-events-for-a-repository
|
/// http://developer.github.com/v3/activity/events/#list-issue-events-for-a-repository
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
Task<IReadOnlyList<Activity>> GetAllForRepository(int repositoryId);
|
Task<IReadOnlyList<Activity>> GetAllForRepository(int repositoryId);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -66,7 +66,7 @@ namespace Octokit
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/activity/events/#list-issue-events-for-a-repository
|
/// http://developer.github.com/v3/activity/events/#list-issue-events-for-a-repository
|
||||||
/// </remarks>
|
/// </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>
|
||||||
Task<IReadOnlyList<Activity>> GetAllForRepository(int repositoryId, ApiOptions options);
|
Task<IReadOnlyList<Activity>> GetAllForRepository(int repositoryId, ApiOptions options);
|
||||||
|
|
||||||
@@ -86,7 +86,7 @@ namespace Octokit
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/activity/events/#list-issue-events-for-a-repository
|
/// http://developer.github.com/v3/activity/events/#list-issue-events-for-a-repository
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
Task<IReadOnlyList<Activity>> GetAllIssuesForRepository(int repositoryId);
|
Task<IReadOnlyList<Activity>> GetAllIssuesForRepository(int repositoryId);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -106,7 +106,7 @@ namespace Octokit
|
|||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// http://developer.github.com/v3/activity/events/#list-issue-events-for-a-repository
|
/// http://developer.github.com/v3/activity/events/#list-issue-events-for-a-repository
|
||||||
/// </remarks>
|
/// </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>
|
||||||
Task<IReadOnlyList<Activity>> GetAllIssuesForRepository(int repositoryId, ApiOptions options);
|
Task<IReadOnlyList<Activity>> GetAllIssuesForRepository(int repositoryId, ApiOptions options);
|
||||||
|
|
||||||
|
|||||||
@@ -25,7 +25,7 @@ namespace Octokit
|
|||||||
/// Creates a reaction for a specified Issue Comment
|
/// Creates a reaction for a specified Issue Comment
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://developer.github.com/v3/reactions/#create-reaction-for-an-issue-comment</remarks>
|
/// <remarks>https://developer.github.com/v3/reactions/#create-reaction-for-an-issue-comment</remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="number">The comment id</param>
|
/// <param name="number">The comment id</param>
|
||||||
/// <param name="reaction">The reaction to create</param>
|
/// <param name="reaction">The reaction to create</param>
|
||||||
Task<Reaction> Create(int repositoryId, int number, NewReaction reaction);
|
Task<Reaction> Create(int repositoryId, int number, NewReaction reaction);
|
||||||
@@ -43,7 +43,7 @@ namespace Octokit
|
|||||||
/// Get all reactions for a specified Issue Comment
|
/// Get all reactions for a specified Issue Comment
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-an-issue-comment</remarks>
|
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-an-issue-comment</remarks>
|
||||||
/// <param name="repositoryId">The ID of the repository</param>
|
/// <param name="repositoryId">The Id of the repository</param>
|
||||||
/// <param name="number">The comment id</param>
|
/// <param name="number">The comment id</param>
|
||||||
Task<IReadOnlyList<Reaction>> GetAll(int repositoryId, int number);
|
Task<IReadOnlyList<Reaction>> GetAll(int repositoryId, int number);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -27,7 +27,7 @@ namespace Octokit
|
|||||||
/// Gets a single Issue Comment by id.
|
/// Gets a single Issue Comment by id.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>http://developer.github.com/v3/issues/comments/#get-a-single-comment</remarks>
|
/// <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>
|
/// <param name="id">The issue comment id</param>
|
||||||
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get",
|
[SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get",
|
||||||
Justification = "Method makes a network request")]
|
Justification = "Method makes a network request")]
|
||||||
@@ -45,7 +45,7 @@ namespace Octokit
|
|||||||
/// Gets Issue Comments for a repository.
|
/// Gets Issue Comments for a repository.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>http://developer.github.com/v3/issues/comments/#list-comments-in-a-repository</remarks>
|
/// <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>
|
||||||
Task<IReadOnlyList<IssueComment>> GetAllForRepository(int repositoryId);
|
Task<IReadOnlyList<IssueComment>> GetAllForRepository(int repositoryId);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -61,7 +61,7 @@ namespace Octokit
|
|||||||
/// Gets Issue Comments for a repository.
|
/// Gets Issue Comments for a repository.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>http://developer.github.com/v3/issues/comments/#list-comments-in-a-repository</remarks>
|
/// <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>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
Task<IReadOnlyList<IssueComment>> GetAllForRepository(int repositoryId, ApiOptions options);
|
Task<IReadOnlyList<IssueComment>> GetAllForRepository(int repositoryId, ApiOptions options);
|
||||||
|
|
||||||
@@ -78,7 +78,7 @@ namespace Octokit
|
|||||||
/// Gets Issue Comments for a specified Issue.
|
/// Gets Issue Comments for a specified Issue.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>http://developer.github.com/v3/issues/comments/#list-comments-on-an-issue</remarks>
|
/// <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="number">The issue number</param>
|
||||||
Task<IReadOnlyList<IssueComment>> GetAllForIssue(int repositoryId, int number);
|
Task<IReadOnlyList<IssueComment>> GetAllForIssue(int repositoryId, int number);
|
||||||
|
|
||||||
@@ -96,7 +96,7 @@ namespace Octokit
|
|||||||
/// Gets Issue Comments for a specified Issue.
|
/// Gets Issue Comments for a specified Issue.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>http://developer.github.com/v3/issues/comments/#list-comments-on-an-issue</remarks>
|
/// <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="number">The issue number</param>
|
||||||
/// <param name="options">Options for changing the API response</param>
|
/// <param name="options">Options for changing the API response</param>
|
||||||
Task<IReadOnlyList<IssueComment>> GetAllForIssue(int repositoryId, int number, ApiOptions options);
|
Task<IReadOnlyList<IssueComment>> GetAllForIssue(int repositoryId, int number, ApiOptions options);
|
||||||
@@ -115,7 +115,7 @@ namespace Octokit
|
|||||||
/// Creates a new Issue Comment for a specified Issue.
|
/// Creates a new Issue Comment for a specified Issue.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>http://developer.github.com/v3/issues/comments/#create-a-comment</remarks>
|
/// <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="number">The number of the issue</param>
|
||||||
/// <param name="newComment">The new comment to add to the issue</param>
|
/// <param name="newComment">The new comment to add to the issue</param>
|
||||||
Task<IssueComment> Create(int repositoryId, int number, string newComment);
|
Task<IssueComment> Create(int repositoryId, int number, string newComment);
|
||||||
@@ -134,7 +134,7 @@ namespace Octokit
|
|||||||
/// Updates a specified Issue Comment.
|
/// Updates a specified Issue Comment.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>http://developer.github.com/v3/issues/comments/#edit-a-comment</remarks>
|
/// <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="id">The comment id</param>
|
||||||
/// <param name="commentUpdate">The modified comment</param>
|
/// <param name="commentUpdate">The modified comment</param>
|
||||||
Task<IssueComment> Update(int repositoryId, int id, string commentUpdate);
|
Task<IssueComment> Update(int repositoryId, int id, string commentUpdate);
|
||||||
@@ -152,7 +152,7 @@ namespace Octokit
|
|||||||
/// Deletes the specified Issue Comment
|
/// Deletes the specified Issue Comment
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>http://developer.github.com/v3/issues/comments/#delete-a-comment</remarks>
|
/// <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>
|
/// <param name="id">The comment id</param>
|
||||||
Task Delete(int repositoryId, int id);
|
Task Delete(int repositoryId, int id);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ namespace Octokit
|
|||||||
/// Get all reactions for a specified Issue
|
/// Get all reactions for a specified Issue
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-an-issue</remarks>
|
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-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 id</param>
|
/// <param name="number">The issue id</param>
|
||||||
Task<IReadOnlyList<Reaction>> GetAll(int repositoryId, int number);
|
Task<IReadOnlyList<Reaction>> GetAll(int repositoryId, int number);
|
||||||
|
|
||||||
@@ -42,7 +42,7 @@ namespace Octokit
|
|||||||
/// Creates a reaction for a specified Issue
|
/// Creates a reaction for a specified Issue
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>https://developer.github.com/v3/reactions/#create-reaction-for-an-issue</remarks>
|
/// <remarks>https://developer.github.com/v3/reactions/#create-reaction-for-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 id</param>
|
/// <param name="number">The issue id</param>
|
||||||
/// <param name="reaction">The reaction to create</param>
|
/// <param name="reaction">The reaction to create</param>
|
||||||
Task<Reaction> Create(int repositoryId, int number, NewReaction reaction);
|
Task<Reaction> Create(int repositoryId, int number, NewReaction reaction);
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user