mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-07 20:30:41 +00:00
cleared <returns> tags
This commit is contained in:
@@ -24,7 +24,7 @@ namespace Octokit
|
||||
/// </summary>
|
||||
/// <param name="owner">The owner of the repository</param>
|
||||
/// <param name="name">The name of the repository</param>
|
||||
/// <returns>A <see cref="IReadOnlyList{User}"/> of <see cref="User"/>s representing assignees of specified repository.</returns>
|
||||
/// <returns></returns>
|
||||
public Task<IReadOnlyList<User>> GetAllForRepository(string owner, string name)
|
||||
{
|
||||
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
||||
@@ -37,7 +37,7 @@ namespace Octokit
|
||||
/// Gets all the available assignees (owner + collaborators) to which issues may be assigned.
|
||||
/// </summary>
|
||||
/// <param name="repositoryId">The ID of the repository</param>
|
||||
/// <returns>A <see cref="IReadOnlyList{User}"/> of <see cref="User"/>s representing assignees of specified repository.</returns>
|
||||
/// <returns></returns>
|
||||
public Task<IReadOnlyList<User>> GetAllForRepository(int repositoryId)
|
||||
{
|
||||
return GetAllForRepository(repositoryId, ApiOptions.None);
|
||||
@@ -49,7 +49,7 @@ namespace Octokit
|
||||
/// <param name="owner">The owner of the repository</param>
|
||||
/// <param name="name">The name of the repository</param>
|
||||
/// <param name="options">The options to change API's response.</param>
|
||||
/// <returns>A <see cref="IReadOnlyList{User}"/> of <see cref="User"/>s representing assignees of specified repository.</returns>
|
||||
/// <returns></returns>
|
||||
public Task<IReadOnlyList<User>> GetAllForRepository(string owner, string name, ApiOptions options)
|
||||
{
|
||||
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
||||
@@ -66,7 +66,7 @@ namespace Octokit
|
||||
/// </summary>
|
||||
/// <param name="repositoryId">The ID of the repository</param>
|
||||
/// <param name="options">The options to change API's response.</param>
|
||||
/// <returns>A <see cref="IReadOnlyList{User}"/> of <see cref="User"/>s representing assignees of specified repository.</returns>
|
||||
/// <returns></returns>
|
||||
public Task<IReadOnlyList<User>> GetAllForRepository(int repositoryId, ApiOptions options)
|
||||
{
|
||||
Ensure.ArgumentNotNull(options, "options");
|
||||
@@ -82,7 +82,7 @@ namespace Octokit
|
||||
/// <param name="owner">The owner of the repository</param>
|
||||
/// <param name="name">The name of the repository</param>
|
||||
/// <param name="assignee">Username of the prospective assignee</param>
|
||||
/// <returns>A <see cref="bool"/> representing is a user is an assignee for a repository.</returns>
|
||||
/// <returns></returns>
|
||||
public async Task<bool> CheckAssignee(string owner, string name, string assignee)
|
||||
{
|
||||
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
||||
@@ -105,7 +105,7 @@ namespace Octokit
|
||||
/// </summary>
|
||||
/// <param name="repositoryId">The ID of the repository</param>
|
||||
/// <param name="assignee">Username of the prospective assignee</param>
|
||||
/// <returns>A <see cref="bool"/> representing is a user is an assignee for a repository.</returns>
|
||||
/// <returns></returns>
|
||||
public async Task<bool> CheckAssignee(int repositoryId, string assignee)
|
||||
{
|
||||
Ensure.ArgumentNotNullOrEmptyString(assignee, "assignee");
|
||||
|
||||
Reference in New Issue
Block a user