Revert "removed GetAllPublic overload due to paging issue and parameters clobbering"

This reverts commit 26a8bf0e81.
This commit is contained in:
Brendan Forster
2015-04-23 09:09:17 +09:30
parent e9918f8b6a
commit c344dfe7c2
8 changed files with 178 additions and 12 deletions

View File

@@ -50,6 +50,18 @@ namespace Octokit.Reactive
Justification = "Makes a network request")]
IObservable<Repository> GetAllPublic();
/// <summary>
/// Retrieves every public <see cref="Repository"/> since the last repository seen.
/// </summary>
/// <remarks>
/// The default page size on GitHub.com is 30.
/// </remarks>
/// <param name="request">Search parameters of the last repository seen</param>
/// <returns>A <see cref="IReadOnlyPagedCollection{Repository}"/> of <see cref="Repository"/>.</returns>
[SuppressMessage("Microsoft.Design", "CA1024:UsePropertiesWhereAppropriate",
Justification = "Makes a network request")]
IObservable<Repository> GetAllPublic(PublicRepositoryRequest request);
/// <summary>
/// Retrieves every <see cref="Repository"/> that belongs to the current user.
/// </summary>