mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-09 13:01:36 +00:00
Quick pass of stargazer docs
This commit is contained in:
@@ -11,10 +11,10 @@ namespace Octokit
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Retrieves all of the starred <see cref="Repository"/>(ies) for the current user.
|
/// Retrieves all of the stargazers for the passed repository.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated.</exception>
|
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated.</exception>
|
||||||
/// <returns>A <see cref="IReadOnlyPagedCollection{Repository}"/> of <see cref="Repository"/>.</returns>
|
/// <returns>A <see cref="IReadOnlyPagedCollection{User}"/> of <see cref="User"/>.</returns>
|
||||||
public Task<IReadOnlyList<User>> GetAllStargazers(string owner, string repo)
|
public Task<IReadOnlyList<User>> GetAllStargazers(string owner, string repo)
|
||||||
{
|
{
|
||||||
return ApiConnection.GetAll<User>(ApiUrls.Stargazers(owner, repo));
|
return ApiConnection.GetAll<User>(ApiUrls.Stargazers(owner, repo));
|
||||||
|
|||||||
Reference in New Issue
Block a user