mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-20 14:15:12 +00:00
ID -> Id
This commit is contained in:
@@ -62,7 +62,7 @@ namespace Octokit.Reactive
|
||||
/// <summary>
|
||||
/// Retrieves all of the <see cref="Notification"/>s for the current user specific to the specified repository.
|
||||
/// </summary>
|
||||
/// <param name="repositoryId">The ID of the repository.</param>
|
||||
/// <param name="repositoryId">The Id of the repository.</param>
|
||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated.</exception>
|
||||
public IObservable<Notification> GetAllForRepository(int repositoryId)
|
||||
{
|
||||
@@ -88,7 +88,7 @@ namespace Octokit.Reactive
|
||||
/// <summary>
|
||||
/// Retrieves all of the <see cref="Notification"/>s for the current user specific to the specified repository.
|
||||
/// </summary>
|
||||
/// <param name="repositoryId">The ID of the repository.</param>
|
||||
/// <param name="repositoryId">The Id of the repository.</param>
|
||||
/// <param name="options">Options for changing the API response</param>
|
||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated.</exception>
|
||||
public IObservable<Notification> GetAllForRepository(int repositoryId, ApiOptions options)
|
||||
@@ -143,7 +143,7 @@ namespace Octokit.Reactive
|
||||
/// <summary>
|
||||
/// Retrieves all of the <see cref="Notification"/>s for the current user specific to the specified repository.
|
||||
/// </summary>
|
||||
/// <param name="repositoryId">The ID of the repository.</param>
|
||||
/// <param name="repositoryId">The Id of the repository.</param>
|
||||
/// <param name="request">Specifies the parameters to filter notifications by</param>
|
||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated.</exception>
|
||||
public IObservable<Notification> GetAllForRepository(int repositoryId, NotificationsRequest request)
|
||||
@@ -174,7 +174,7 @@ namespace Octokit.Reactive
|
||||
/// <summary>
|
||||
/// Retrieves all of the <see cref="Notification"/>s for the current user specific to the specified repository.
|
||||
/// </summary>
|
||||
/// <param name="repositoryId">The ID of the repository.</param>
|
||||
/// <param name="repositoryId">The Id of the repository.</param>
|
||||
/// <param name="request">Specifies the parameters to filter notifications by</param>
|
||||
/// <param name="options">Options for changing the API response</param>
|
||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated.</exception>
|
||||
@@ -224,7 +224,7 @@ namespace Octokit.Reactive
|
||||
/// <summary>
|
||||
/// Marks the notifications for a given repository as read.
|
||||
/// </summary>
|
||||
/// <param name="repositoryId">The ID of the repository</param>
|
||||
/// <param name="repositoryId">The Id of the repository</param>
|
||||
/// <remarks>http://developer.github.com/v3/activity/notifications/#mark-notifications-as-read-in-a-repository</remarks>
|
||||
public IObservable<Unit> MarkAsReadForRepository(int repositoryId)
|
||||
{
|
||||
@@ -250,7 +250,7 @@ namespace Octokit.Reactive
|
||||
/// <summary>
|
||||
/// Marks the notifications for a given repository as read.
|
||||
/// </summary>
|
||||
/// <param name="repositoryId">The ID of the repository</param>
|
||||
/// <param name="repositoryId">The Id of the repository</param>
|
||||
/// <param name="markAsReadRequest">The <see cref="MarkAsReadRequest"/> parameter which specifies which notifications to mark.</param>
|
||||
/// <remarks>http://developer.github.com/v3/activity/notifications/#mark-notifications-as-read-in-a-repository</remarks>
|
||||
public IObservable<Unit> MarkAsReadForRepository(int repositoryId, MarkAsReadRequest markAsReadRequest)
|
||||
|
||||
Reference in New Issue
Block a user