mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-07 20:30:41 +00:00
Correcting return type in ObservableEventsClient
This commit is contained in:
@@ -76,7 +76,7 @@ namespace Octokit.Reactive
|
||||
/// </remarks>
|
||||
/// <param name="owner">The owner of the repository</param>
|
||||
/// <param name="name">The name of the repository</param>
|
||||
IObservable<Activity> GetAllIssuesForRepository(string owner, string name);
|
||||
IObservable<IssueEvent> GetAllIssuesForRepository(string owner, string name);
|
||||
|
||||
/// <summary>
|
||||
/// Gets all the issue events for a given repository
|
||||
@@ -85,7 +85,7 @@ namespace Octokit.Reactive
|
||||
/// http://developer.github.com/v3/activity/events/#list-issue-events-for-a-repository
|
||||
/// </remarks>
|
||||
/// <param name="repositoryId">The Id of the repository</param>
|
||||
IObservable<Activity> GetAllIssuesForRepository(long repositoryId);
|
||||
IObservable<IssueEvent> GetAllIssuesForRepository(long repositoryId);
|
||||
|
||||
/// <summary>
|
||||
/// Gets all the issue events for a given repository
|
||||
@@ -96,7 +96,7 @@ namespace Octokit.Reactive
|
||||
/// <param name="owner">The owner of the repository</param>
|
||||
/// <param name="name">The name of the repository</param>
|
||||
/// <param name="options">Options for changing the API response</param>
|
||||
IObservable<Activity> GetAllIssuesForRepository(string owner, string name, ApiOptions options);
|
||||
IObservable<IssueEvent> GetAllIssuesForRepository(string owner, string name, ApiOptions options);
|
||||
|
||||
/// <summary>
|
||||
/// Gets all the issue events for a given repository
|
||||
@@ -106,7 +106,7 @@ namespace Octokit.Reactive
|
||||
/// </remarks>
|
||||
/// <param name="repositoryId">The Id of the repository</param>
|
||||
/// <param name="options">Options for changing the API response</param>
|
||||
IObservable<Activity> GetAllIssuesForRepository(long repositoryId, ApiOptions options);
|
||||
IObservable<IssueEvent> GetAllIssuesForRepository(long repositoryId, ApiOptions options);
|
||||
|
||||
/// <summary>
|
||||
/// Gets all the events for a given repository network
|
||||
|
||||
Reference in New Issue
Block a user