Implementing the rest of the Notifications API

This commit is contained in:
Dillon Buchanan
2014-08-17 11:03:32 -04:00
committed by Brendan Forster
parent 45e48e26f7
commit f45fc8e3ff
20 changed files with 795 additions and 0 deletions
+7
View File
@@ -142,6 +142,13 @@ namespace Octokit
/// <exception cref="ApiException">Thrown when an API error occurs.</exception>
Task<T> Put<T>(Uri uri, object data, string twoFactorAuthenticationCode);
/// <summary>
/// Updates the API resource at the specified URI.
/// </summary>
/// <param name="uri">URI of the API resource to patch</param>
/// <returns>A <see cref="Task"/> for the request's execution.</returns>
Task Patch(Uri uri);
/// <summary>
/// Updates the API resource at the specified URI.
/// </summary>