Merge branch 'master' into api-paging-part-deux

This commit is contained in:
Brendan Forster
2016-02-24 11:40:43 +11:00
54 changed files with 2609 additions and 69 deletions
+9
View File
@@ -133,6 +133,15 @@ namespace Octokit
/// <exception cref="ApiException">Thrown when an API error occurs.</exception>
Task Post(Uri uri);
/// <summary>
/// Creates a new API resource in the list at the specified URI.
/// </summary>
/// <typeparam name="T">The API resource's type.</typeparam>
/// <param name="uri">URI endpoint to send request to</param>
/// <returns>The created API resource.</returns>
/// <exception cref="ApiException">Thrown when an API error occurs.</exception>
Task<T> Post<T>(Uri uri);
/// <summary>
/// Creates a new API resource in the list at the specified URI.
/// </summary>