diff --git a/Octokit.Reactive/Clients/IObservableCommitStatusClient.cs b/Octokit.Reactive/Clients/IObservableCommitStatusClient.cs index 77f1923d..886824f8 100644 --- a/Octokit.Reactive/Clients/IObservableCommitStatusClient.cs +++ b/Octokit.Reactive/Clients/IObservableCommitStatusClient.cs @@ -18,7 +18,7 @@ namespace Octokit.Reactive /// The owner of the repository /// The name of the repository /// The reference (SHA, branch name, or tag name) to list commits for - /// A of es representing commit statuses for specified repository + /// IObservable GetAll(string owner, string name, string reference); /// @@ -28,7 +28,7 @@ namespace Octokit.Reactive /// Only users with pull access can see this. /// The ID of the repository /// The reference (SHA, branch name, or tag name) to list commits for - /// A of es representing commit statuses for specified repository + /// IObservable GetAll(int repositoryId, string reference); /// @@ -40,7 +40,7 @@ namespace Octokit.Reactive /// The name of the repository /// The reference (SHA, branch name, or tag name) to list commits for /// Options for changing the API response - /// A of es representing commit statuses for specified repository + /// IObservable GetAll(string owner, string name, string reference, ApiOptions options); /// @@ -51,7 +51,7 @@ namespace Octokit.Reactive /// The ID of the repository /// The reference (SHA, branch name, or tag name) to list commits for /// Options for changing the API response - /// A of es representing commit statuses for specified repository + /// IObservable GetAll(int repositoryId, string reference, ApiOptions options); /// @@ -62,7 +62,7 @@ namespace Octokit.Reactive /// The owner of the repository /// The name of the repository /// The reference (SHA, branch name, or tag name) to list commits for - /// A of representing combined commit status for specified repository + /// IObservable GetCombined(string owner, string name, string reference); /// @@ -72,7 +72,7 @@ namespace Octokit.Reactive /// Only users with pull access can see this. /// The ID of the repository /// The reference (SHA, branch name, or tag name) to list commits for - /// A of representing combined commit status for specified repository + /// IObservable GetCombined(int repositoryId, string reference); /// @@ -82,7 +82,7 @@ namespace Octokit.Reactive /// The name of the repository /// The reference (SHA, branch name, or tag name) to list commits for /// The commit status to create - /// A of representing created commit status for specified repository + /// IObservable Create(string owner, string name, string reference, NewCommitStatus newCommitStatus); /// @@ -91,7 +91,7 @@ namespace Octokit.Reactive /// The ID of the repository /// The reference (SHA, branch name, or tag name) to list commits for /// The commit status to create - /// A of representing created commit status for specified repository + /// IObservable Create(int repositoryId, string reference, NewCommitStatus newCommitStatus); } } diff --git a/Octokit.Reactive/Clients/ObservableCommitStatusClient.cs b/Octokit.Reactive/Clients/ObservableCommitStatusClient.cs index 1e00e39a..33ed2671 100644 --- a/Octokit.Reactive/Clients/ObservableCommitStatusClient.cs +++ b/Octokit.Reactive/Clients/ObservableCommitStatusClient.cs @@ -31,7 +31,7 @@ namespace Octokit.Reactive /// The owner of the repository /// The name of the repository /// The reference (SHA, branch name, or tag name) to list commits for - /// A of es representing commit statuses for specified repository + /// public IObservable GetAll(string owner, string name, string reference) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); @@ -48,7 +48,7 @@ namespace Octokit.Reactive /// Only users with pull access can see this. /// The ID of the repository /// The reference (SHA, branch name, or tag name) to list commits for - /// A of es representing commit statuses for specified repository + /// public IObservable GetAll(int repositoryId, string reference) { Ensure.ArgumentNotNullOrEmptyString(reference, "reference"); @@ -65,7 +65,7 @@ namespace Octokit.Reactive /// The name of the repository /// The reference (SHA, branch name, or tag name) to list commits for /// Options for changing the API response - /// A of es representing commit statuses for specified repository + /// public IObservable GetAll(string owner, string name, string reference, ApiOptions options) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); @@ -84,7 +84,7 @@ namespace Octokit.Reactive /// The ID of the repository /// The reference (SHA, branch name, or tag name) to list commits for /// Options for changing the API response - /// A of es representing commit statuses for specified repository + /// public IObservable GetAll(int repositoryId, string reference, ApiOptions options) { Ensure.ArgumentNotNullOrEmptyString(reference, "reference"); @@ -101,7 +101,7 @@ namespace Octokit.Reactive /// The owner of the repository /// The name of the repository /// The reference (SHA, branch name, or tag name) to list commits for - /// A of representing combined commit status for specified repository + /// public IObservable GetCombined(string owner, string name, string reference) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); @@ -118,7 +118,7 @@ namespace Octokit.Reactive /// Only users with pull access can see this. /// The ID of the repository /// The reference (SHA, branch name, or tag name) to list commits for - /// A of representing combined commit status for specified repository + /// public IObservable GetCombined(int repositoryId, string reference) { Ensure.ArgumentNotNullOrEmptyString(reference, "reference"); @@ -133,7 +133,7 @@ namespace Octokit.Reactive /// The name of the repository /// The reference (SHA, branch name, or tag name) to list commits for /// The commit status to create - /// A of representing created commit status for specified repository + /// public IObservable Create(string owner, string name, string reference, NewCommitStatus newCommitStatus) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); @@ -150,7 +150,7 @@ namespace Octokit.Reactive /// The ID of the repository /// The reference (SHA, branch name, or tag name) to list commits for /// The commit status to create - /// A of representing created commit status for specified repository + /// public IObservable Create(int repositoryId, string reference, NewCommitStatus newCommitStatus) { Ensure.ArgumentNotNullOrEmptyString(reference, "reference"); diff --git a/Octokit/Clients/CommitStatusClient.cs b/Octokit/Clients/CommitStatusClient.cs index bac8f264..9ab7c452 100644 --- a/Octokit/Clients/CommitStatusClient.cs +++ b/Octokit/Clients/CommitStatusClient.cs @@ -29,7 +29,7 @@ namespace Octokit /// The owner of the repository /// The name of the repository /// The reference (SHA, branch name, or tag name) to list commits for - /// A of es representing commit statuses for specified repository + /// public Task> GetAll(string owner, string name, string reference) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); @@ -48,7 +48,7 @@ namespace Octokit /// /// The ID of the repository /// The reference (SHA, branch name, or tag name) to list commits for - /// A of es representing commit statuses for specified repository + /// public Task> GetAll(int repositoryId, string reference) { Ensure.ArgumentNotNullOrEmptyString(reference, "reference"); @@ -67,7 +67,7 @@ namespace Octokit /// The name of the repository /// The reference (SHA, branch name, or tag name) to list commits for /// Options for changing the API response - /// A of es representing commit statuses for specified repository + /// public Task> GetAll(string owner, string name, string reference, ApiOptions options) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); @@ -88,7 +88,7 @@ namespace Octokit /// The ID of the repository /// The reference (SHA, branch name, or tag name) to list commits for /// Options for changing the API response - /// A of es representing commit statuses for specified repository + /// public Task> GetAll(int repositoryId, string reference, ApiOptions options) { Ensure.ArgumentNotNullOrEmptyString(reference, "reference"); @@ -107,7 +107,7 @@ namespace Octokit /// The owner of the repository /// The name of the repository /// The reference (SHA, branch name, or tag name) to list commits for - /// A representing combined commit status for specified repository + /// public Task GetCombined(string owner, string name, string reference) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); @@ -126,7 +126,7 @@ namespace Octokit /// /// The ID of the repository /// The reference (SHA, branch name, or tag name) to list commits for - /// A representing combined commit status for specified repository + /// public Task GetCombined(int repositoryId, string reference) { Ensure.ArgumentNotNullOrEmptyString(reference, "reference"); @@ -144,7 +144,7 @@ namespace Octokit /// The name of the repository /// The reference (SHA, branch name, or tag name) to list commits for /// The commit status to create - /// A representing created commit status for specified repository + /// public Task Create(string owner, string name, string reference, NewCommitStatus newCommitStatus) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); @@ -164,7 +164,7 @@ namespace Octokit /// The ID of the repository /// The reference (SHA, branch name, or tag name) to list commits for /// The commit status to create - /// A representing created commit status for specified repository + /// public Task Create(int repositoryId, string reference, NewCommitStatus newCommitStatus) { Ensure.ArgumentNotNullOrEmptyString(reference, "reference"); diff --git a/Octokit/Clients/ICommitStatusClient.cs b/Octokit/Clients/ICommitStatusClient.cs index 49ca18ca..c6b33d60 100644 --- a/Octokit/Clients/ICommitStatusClient.cs +++ b/Octokit/Clients/ICommitStatusClient.cs @@ -21,7 +21,7 @@ namespace Octokit /// The owner of the repository /// The name of the repository /// The reference (SHA, branch name, or tag name) to list commits for - /// A of es representing commit statuses for specified repository + /// Task> GetAll(string owner, string name, string reference); /// @@ -33,7 +33,7 @@ namespace Octokit /// /// The ID of the repository /// The reference (SHA, branch name, or tag name) to list commits for - /// A of es representing commit statuses for specified repository + /// Task> GetAll(int repositoryId, string reference); /// @@ -47,7 +47,7 @@ namespace Octokit /// The name of the repository /// The reference (SHA, branch name, or tag name) to list commits for /// Options for changing the API response - /// A of es representing commit statuses for specified repository + /// Task> GetAll(string owner, string name, string reference, ApiOptions options); /// @@ -60,7 +60,7 @@ namespace Octokit /// The ID of the repository /// The reference (SHA, branch name, or tag name) to list commits for /// Options for changing the API response - /// A of es representing commit statuses for specified repository + /// Task> GetAll(int repositoryId, string reference, ApiOptions options); /// @@ -73,7 +73,7 @@ namespace Octokit /// The owner of the repository /// The name of the repository /// The reference (SHA, branch name, or tag name) to list commits for - /// A representing combined commit status for specified repository + /// Task GetCombined(string owner, string name, string reference); /// @@ -85,7 +85,7 @@ namespace Octokit /// /// The ID of the repository /// The reference (SHA, branch name, or tag name) to list commits for - /// A representing combined commit status for specified repository + /// Task GetCombined(int repositoryId, string reference); /// @@ -98,7 +98,7 @@ namespace Octokit /// The name of the repository /// The reference (SHA, branch name, or tag name) to list commits for /// The commit status to create - /// A representing created commit status for specified repository + /// Task Create(string owner, string name, string reference, NewCommitStatus newCommitStatus); /// @@ -110,7 +110,7 @@ namespace Octokit /// The ID of the repository /// The reference (SHA, branch name, or tag name) to list commits for /// The commit status to create - /// A representing created commit status for specified repository + /// Task Create(int repositoryId, string reference, NewCommitStatus newCommitStatus); } }