mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-21 14:45:11 +00:00
Revert "removed GetAllPublic overload due to paging issue and parameters clobbering"
This reverts commit 26a8bf0e81.
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user