Front end for uploading a release asset.

This commit is contained in:
Matt Burke
2013-10-02 14:55:05 -04:00
committed by Haacked
parent 9a6e46d608
commit 15a5cc9591
8 changed files with 124 additions and 0 deletions
+2
View File
@@ -1,6 +1,7 @@
using System;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using System.IO;
using System.Threading.Tasks;
namespace Octokit.Http
@@ -22,5 +23,6 @@ namespace Octokit.Http
Task<TOther> Create<TOther>(Uri endpoint, object data);
Task<T> Update(Uri endpoint, object data);
Task Delete(Uri endpoint);
Task<TOther> Upload<TOther>(Uri uri, Stream rawData, Dictionary<string, string> headers);
}
}