diff --git a/Octokit.Reactive/Clients/IObservableIssuesEventsClient.cs b/Octokit.Reactive/Clients/IObservableIssuesEventsClient.cs index fddcfc4b..c28f1a6f 100644 --- a/Octokit.Reactive/Clients/IObservableIssuesEventsClient.cs +++ b/Octokit.Reactive/Clients/IObservableIssuesEventsClient.cs @@ -20,7 +20,7 @@ namespace Octokit.Reactive /// The owner of the repository /// The name of the repository /// The issue number - /// A of s representing event information for specified number. + /// IObservable GetAllForIssue(string owner, string name, int number); /// @@ -31,7 +31,7 @@ namespace Octokit.Reactive /// /// The ID of the repository /// The issue number - /// A of s representing event information for specified number. + /// IObservable GetAllForIssue(int repositoryId, int number); /// @@ -44,7 +44,7 @@ namespace Octokit.Reactive /// The name of the repository /// The issue number /// Options for changing the API response - /// A of s representing event information for specified number. + /// IObservable GetAllForIssue(string owner, string name, int number, ApiOptions options); /// @@ -56,7 +56,7 @@ namespace Octokit.Reactive /// The ID of the repository /// The issue number /// Options for changing the API response - /// A of s representing event information for specified number. + /// IObservable GetAllForIssue(int repositoryId, int number, ApiOptions options); /// @@ -67,7 +67,7 @@ namespace Octokit.Reactive /// /// The owner of the repository /// The name of the repository - /// A of s representing issue events for specified repository. + /// IObservable GetAllForRepository(string owner, string name); /// @@ -77,7 +77,7 @@ namespace Octokit.Reactive /// http://developer.github.com/v3/issues/events/#list-events-for-a-repository /// /// The ID of the repository - /// A of s representing issue events for specified repository. + /// IObservable GetAllForRepository(int repositoryId); /// @@ -89,7 +89,7 @@ namespace Octokit.Reactive /// The owner of the repository /// The name of the repository /// Options for changing the API response - /// A of s representing issue events for specified repository. + /// IObservable GetAllForRepository(string owner, string name, ApiOptions options); /// @@ -100,7 +100,7 @@ namespace Octokit.Reactive /// /// The ID of the repository /// Options for changing the API response - /// A of s representing issue events for specified repository. + /// IObservable GetAllForRepository(int repositoryId, ApiOptions options); /// @@ -112,7 +112,7 @@ namespace Octokit.Reactive /// The owner of the repository /// The name of the repository /// The event id - /// A representing issue event for specified number. + /// [SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get", Justification = "Method makes a network request")] IObservable Get(string owner, string name, int number); @@ -125,7 +125,7 @@ namespace Octokit.Reactive /// /// The ID of the repository /// The event id - /// A representing issue event for specified number. + /// [SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get", Justification = "Method makes a network request")] IObservable Get(int repositoryId, int number); diff --git a/Octokit.Reactive/Clients/ObservableIssuesEventsClient.cs b/Octokit.Reactive/Clients/ObservableIssuesEventsClient.cs index eec7f975..076aa924 100644 --- a/Octokit.Reactive/Clients/ObservableIssuesEventsClient.cs +++ b/Octokit.Reactive/Clients/ObservableIssuesEventsClient.cs @@ -32,7 +32,7 @@ namespace Octokit.Reactive /// The owner of the repository /// The name of the repository /// The issue number - /// A of s representing event information for specified number. + /// public IObservable GetAllForIssue(string owner, string name, int number) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); @@ -49,7 +49,7 @@ namespace Octokit.Reactive /// /// The ID of the repository /// The issue number - /// A of s representing event information for specified number. + /// public IObservable GetAllForIssue(int repositoryId, int number) { return GetAllForIssue(repositoryId, number, ApiOptions.None); @@ -65,7 +65,7 @@ namespace Octokit.Reactive /// The name of the repository /// The issue number /// Options for changing the API response - /// A of s representing event information for specified number. + /// public IObservable GetAllForIssue(string owner, string name, int number, ApiOptions options) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); @@ -84,7 +84,7 @@ namespace Octokit.Reactive /// The ID of the repository /// The issue number /// Options for changing the API response - /// A of s representing event information for specified number. + /// public IObservable GetAllForIssue(int repositoryId, int number, ApiOptions options) { Ensure.ArgumentNotNull(options, "options"); @@ -100,7 +100,7 @@ namespace Octokit.Reactive /// /// The owner of the repository /// The name of the repository - /// A of s representing issue events for specified repository. + /// public IObservable GetAllForRepository(string owner, string name) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); @@ -116,7 +116,7 @@ namespace Octokit.Reactive /// http://developer.github.com/v3/issues/events/#list-events-for-a-repository /// /// The ID of the repository - /// A of s representing issue events for specified repository. + /// public IObservable GetAllForRepository(int repositoryId) { return GetAllForRepository(repositoryId, ApiOptions.None); @@ -131,7 +131,7 @@ namespace Octokit.Reactive /// The owner of the repository /// The name of the repository /// Options for changing the API response - /// A of s representing issue events for specified repository. + /// public IObservable GetAllForRepository(string owner, string name, ApiOptions options) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); @@ -149,7 +149,7 @@ namespace Octokit.Reactive /// /// The ID of the repository /// Options for changing the API response - /// A of s representing issue events for specified repository. + /// public IObservable GetAllForRepository(int repositoryId, ApiOptions options) { Ensure.ArgumentNotNull(options, "options"); @@ -166,7 +166,7 @@ namespace Octokit.Reactive /// The owner of the repository /// The name of the repository /// The event id - /// A representing issue event for specified number. + /// public IObservable Get(string owner, string name, int number) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); @@ -183,7 +183,7 @@ namespace Octokit.Reactive /// /// The ID of the repository /// The event id - /// A representing issue event for specified number. + /// public IObservable Get(int repositoryId, int number) { return _client.Get(repositoryId, number).ToObservable(); diff --git a/Octokit/Clients/IIssuesEventsClient.cs b/Octokit/Clients/IIssuesEventsClient.cs index f9f0edc9..325c1bd2 100644 --- a/Octokit/Clients/IIssuesEventsClient.cs +++ b/Octokit/Clients/IIssuesEventsClient.cs @@ -21,7 +21,7 @@ namespace Octokit /// The owner of the repository /// The name of the repository /// The issue number - /// A of s representing event information for specified number. + /// Task> GetAllForIssue(string owner, string name, int number); /// @@ -32,7 +32,7 @@ namespace Octokit /// /// The ID of the repository /// The issue number - /// A of s representing event information for specified number. + /// Task> GetAllForIssue(int repositoryId, int number); /// @@ -45,7 +45,7 @@ namespace Octokit /// The name of the repository /// The issue number /// Options for changing the API response - /// A of s representing event information for specified number. + /// Task> GetAllForIssue(string owner, string name, int number, ApiOptions options); /// @@ -57,7 +57,7 @@ namespace Octokit /// The ID of the repository /// The issue number /// Options for changing the API response - /// A of s representing event information for specified number. + /// Task> GetAllForIssue(int repositoryId, int number, ApiOptions options); /// @@ -68,7 +68,7 @@ namespace Octokit /// /// The owner of the repository /// The name of the repository - /// A of s representing issue events for specified repository. + /// Task> GetAllForRepository(string owner, string name); /// @@ -78,7 +78,7 @@ namespace Octokit /// http://developer.github.com/v3/issues/events/#list-events-for-a-repository /// /// The ID of the repository - /// A of s representing issue events for specified repository. + /// Task> GetAllForRepository(int repositoryId); /// @@ -90,7 +90,7 @@ namespace Octokit /// The owner of the repository /// The name of the repository /// Options for changing the API response - /// A of s representing issue events for specified repository. + /// Task> GetAllForRepository(string owner, string name, ApiOptions options); /// @@ -101,7 +101,7 @@ namespace Octokit /// /// The ID of the repository /// Options for changing the API response - /// A of s representing issue events for specified repository. + /// Task> GetAllForRepository(int repositoryId, ApiOptions options); /// @@ -113,7 +113,7 @@ namespace Octokit /// The owner of the repository /// The name of the repository /// The event id - /// A representing issue event for specified number. + /// [SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get", Justification = "Method makes a network request")] Task Get(string owner, string name, int number); @@ -126,7 +126,7 @@ namespace Octokit /// /// The ID of the repository /// The event id - /// A representing issue event for specified number. + /// [SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get", Justification = "Method makes a network request")] Task Get(int repositoryId, int number); diff --git a/Octokit/Clients/IssuesEventsClient.cs b/Octokit/Clients/IssuesEventsClient.cs index 51056a5a..d0e910bf 100644 --- a/Octokit/Clients/IssuesEventsClient.cs +++ b/Octokit/Clients/IssuesEventsClient.cs @@ -26,7 +26,7 @@ namespace Octokit /// The owner of the repository /// The name of the repository /// The issue number - /// A of s representing event information for specified number. + /// public Task> GetAllForIssue(string owner, string name, int number) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); @@ -43,7 +43,7 @@ namespace Octokit /// /// The ID of the repository /// The issue number - /// A of s representing event information for specified number. + /// public Task> GetAllForIssue(int repositoryId, int number) { return GetAllForIssue(repositoryId, number, ApiOptions.None); @@ -59,7 +59,7 @@ namespace Octokit /// The name of the repository /// The issue number /// Options for changing the API response - /// A of s representing event information for specified number. + /// public Task> GetAllForIssue(string owner, string name, int number, ApiOptions options) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); @@ -78,7 +78,7 @@ namespace Octokit /// The ID of the repository /// The issue number /// Options for changing the API response - /// A of s representing event information for specified number. + /// public Task> GetAllForIssue(int repositoryId, int number, ApiOptions options) { Ensure.ArgumentNotNull(options, "options"); @@ -94,7 +94,7 @@ namespace Octokit /// /// The owner of the repository /// The name of the repository - /// A of s representing issue events for specified repository. + /// public Task> GetAllForRepository(string owner, string name) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); @@ -110,7 +110,7 @@ namespace Octokit /// http://developer.github.com/v3/issues/events/#list-events-for-a-repository /// /// The ID of the repository - /// A of s representing issue events for specified repository. + /// public Task> GetAllForRepository(int repositoryId) { return GetAllForRepository(repositoryId, ApiOptions.None); @@ -125,7 +125,7 @@ namespace Octokit /// The owner of the repository /// The name of the repository /// Options for changing the API response - /// A of s representing issue events for specified repository. + /// public Task> GetAllForRepository(string owner, string name, ApiOptions options) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); @@ -143,7 +143,7 @@ namespace Octokit /// /// The ID of the repository /// Options for changing the API response - /// A of s representing issue events for specified repository. + /// public Task> GetAllForRepository(int repositoryId, ApiOptions options) { Ensure.ArgumentNotNull(options, "options"); @@ -160,7 +160,7 @@ namespace Octokit /// The owner of the repository /// The name of the repository /// The event id - /// A representing issue event for specified number. + /// public Task Get(string owner, string name, int number) { Ensure.ArgumentNotNullOrEmptyString(owner, "owner"); @@ -177,7 +177,7 @@ namespace Octokit /// /// The ID of the repository /// The event id - /// A representing issue event for specified number. + /// public Task Get(int repositoryId, int number) { return ApiConnection.Get(ApiUrls.IssuesEvent(repositoryId, number));