diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-11-30 01:07:25 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-11-30 01:07:25 -0500 |
| commit | 0bdc8a49d5ea17417b3552d6db21239190bc4b6b (patch) | |
| tree | acf68343f6645bb57ad39ede2e24c9520b64dd90 /MediaBrowser.Common/Net/IHttpClient.cs | |
| parent | 9b9e5fc4e48aa8d2595691b5cf0c3354f723726a (diff) | |
switch from httpclient to plain httpwebrequest
Diffstat (limited to 'MediaBrowser.Common/Net/IHttpClient.cs')
| -rw-r--r-- | MediaBrowser.Common/Net/IHttpClient.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/MediaBrowser.Common/Net/IHttpClient.cs b/MediaBrowser.Common/Net/IHttpClient.cs index 93348d4ca..54d6665e2 100644 --- a/MediaBrowser.Common/Net/IHttpClient.cs +++ b/MediaBrowser.Common/Net/IHttpClient.cs @@ -73,6 +73,11 @@ namespace MediaBrowser.Common.Net /// <exception cref="MediaBrowser.Model.Net.HttpException"></exception> Task<string> GetTempFile(HttpRequestOptions options); + /// <summary> + /// Gets the temporary file response. + /// </summary> + /// <param name="options">The options.</param> + /// <returns>Task{HttpResponseInfo}.</returns> Task<HttpResponseInfo> GetTempFileResponse(HttpRequestOptions options); } }
\ No newline at end of file |
