mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-02 02:45:32 +00:00
Added the missing obsolete GetAll(string,string) method to IObservableOrganizationMembersClient, fixed 2 small typos in the comments
This commit is contained in:
@@ -50,6 +50,15 @@ namespace Octokit.Reactive
|
||||
/// <returns></returns>
|
||||
IObservable<User> GetAll(string org, OrganizationMembersFilter filter);
|
||||
|
||||
/// <summary>
|
||||
/// Obsolete, <see cref="GetAll(string,OrganizationMembersFilter)"/>
|
||||
/// </summary>
|
||||
/// <param name="org">The login for the organization</param>
|
||||
/// <param name="filter">The user filter</param>
|
||||
/// <returns>The users</returns>
|
||||
[Obsolete("No longer supported, use GetAll(string, OrganizationMembersFilter) instead")]
|
||||
IObservable<User> GetAll(string org, string filter);
|
||||
|
||||
/// <summary>
|
||||
/// List all users who have publicized their membership of the organization.
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user