mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-20 14:15:12 +00:00
removed <returns> tags here
This commit is contained in:
@@ -15,14 +15,12 @@ namespace Octokit.Reactive
|
||||
/// </summary>
|
||||
/// <param name="owner">The owner of the repository</param>
|
||||
/// <param name="name">The name of the repository</param>
|
||||
/// <returns></returns>
|
||||
IObservable<User> GetAllForRepository(string owner, string name);
|
||||
|
||||
/// <summary>
|
||||
/// Gets all the available assignees (owner + collaborators) to which issues may be assigned.
|
||||
/// </summary>
|
||||
/// <param name="repositoryId">The ID of the repository</param>
|
||||
/// <returns></returns>
|
||||
IObservable<User> GetAllForRepository(int repositoryId);
|
||||
|
||||
/// <summary>
|
||||
@@ -31,7 +29,6 @@ namespace Octokit.Reactive
|
||||
/// <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 behaviour.</param>
|
||||
/// <returns></returns>
|
||||
IObservable<User> GetAllForRepository(string owner, string name, ApiOptions options);
|
||||
|
||||
/// <summary>
|
||||
@@ -39,7 +36,6 @@ namespace Octokit.Reactive
|
||||
/// </summary>
|
||||
/// <param name="repositoryId">The ID of the repository</param>
|
||||
/// <param name="options">The options to change API's behaviour.</param>
|
||||
/// <returns></returns>
|
||||
IObservable<User> GetAllForRepository(int repositoryId, ApiOptions options);
|
||||
|
||||
/// <summary>
|
||||
@@ -48,7 +44,6 @@ namespace Octokit.Reactive
|
||||
/// <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></returns>
|
||||
IObservable<bool> CheckAssignee(string owner, string name, string assignee);
|
||||
|
||||
/// <summary>
|
||||
@@ -56,7 +51,6 @@ namespace Octokit.Reactive
|
||||
/// </summary>
|
||||
/// <param name="repositoryId">The ID of the repository</param>
|
||||
/// <param name="assignee">Username of the prospective assignee</param>
|
||||
/// <returns></returns>
|
||||
IObservable<bool> CheckAssignee(int repositoryId, string assignee);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user