mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-22 15:15:19 +00:00
Add Member property to observable Orgs client
This commit is contained in:
@@ -52,7 +52,7 @@ namespace Octokit.Reactive
|
||||
/// <remarks>
|
||||
/// http://developer.github.com/v3/activity/events/#list-events-that-a-user-has-received
|
||||
/// </remarks>
|
||||
/// <param name="user">The name of the user</param>
|
||||
/// <param name="user">The login of the user</param>
|
||||
/// <returns>All the <see cref="Activity"/>s that a particular user has received.</returns>
|
||||
IObservable<Activity> GetUserReceived(string user);
|
||||
|
||||
@@ -62,7 +62,7 @@ namespace Octokit.Reactive
|
||||
/// <remarks>
|
||||
/// http://developer.github.com/v3/activity/events/#list-public-events-that-a-user-has-received
|
||||
/// </remarks>
|
||||
/// <param name="user">The name of the user</param>
|
||||
/// <param name="user">The login of the user</param>
|
||||
/// <returns>All the <see cref="Activity"/>s that a particular user has received.</returns>
|
||||
IObservable<Activity> GetUserReceivedPublic(string user);
|
||||
|
||||
@@ -72,7 +72,7 @@ namespace Octokit.Reactive
|
||||
/// <remarks>
|
||||
/// http://developer.github.com/v3/activity/events/#list-events-performed-by-a-user
|
||||
/// </remarks>
|
||||
/// <param name="user">The name of the user</param>
|
||||
/// <param name="user">The login of the user</param>
|
||||
/// <returns>All the <see cref="Activity"/>s that a particular user has performed.</returns>
|
||||
IObservable<Activity> GetUserPerformed(string user);
|
||||
|
||||
@@ -82,7 +82,7 @@ namespace Octokit.Reactive
|
||||
/// <remarks>
|
||||
/// http://developer.github.com/v3/activity/events/#list-public-events-performed-by-a-user
|
||||
/// </remarks>
|
||||
/// <param name="user">The name of the user</param>
|
||||
/// <param name="user">The login of the user</param>
|
||||
/// <returns>All the public <see cref="Activity"/>s that a particular user has performed.</returns>
|
||||
IObservable<Activity> GetUserPerformedPublic(string user);
|
||||
|
||||
@@ -92,7 +92,7 @@ namespace Octokit.Reactive
|
||||
/// <remarks>
|
||||
/// http://developer.github.com/v3/activity/events/#list-events-for-an-organization
|
||||
/// </remarks>
|
||||
/// <param name="user">The name of the user</param>
|
||||
/// <param name="user">The login of the user</param>
|
||||
/// <param name="organization">The name of the organization</param>
|
||||
/// <returns>All the public <see cref="Activity"/>s that are associated with an organization.</returns>
|
||||
IObservable<Activity> GetForAnOrganization(string user, string organization);
|
||||
|
||||
Reference in New Issue
Block a user