From 7e5bdc837a95067b304872c3a757e39e434adaba Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Sat, 20 Jul 2013 17:36:59 -0400 Subject: added GetTempFileResponse --- MediaBrowser.Common/Net/HttpResponseInfo.cs | 6 ++++++ MediaBrowser.Common/Net/IHttpClient.cs | 2 ++ 2 files changed, 8 insertions(+) (limited to 'MediaBrowser.Common/Net') diff --git a/MediaBrowser.Common/Net/HttpResponseInfo.cs b/MediaBrowser.Common/Net/HttpResponseInfo.cs index 558218ed16..3199dcc1c4 100644 --- a/MediaBrowser.Common/Net/HttpResponseInfo.cs +++ b/MediaBrowser.Common/Net/HttpResponseInfo.cs @@ -25,5 +25,11 @@ namespace MediaBrowser.Common.Net /// /// The status code. public HttpStatusCode StatusCode { get; set; } + + /// + /// Gets or sets the temp file path. + /// + /// The temp file path. + public string TempFilePath { get; set; } } } diff --git a/MediaBrowser.Common/Net/IHttpClient.cs b/MediaBrowser.Common/Net/IHttpClient.cs index 6068d4e8c8..93348d4ca0 100644 --- a/MediaBrowser.Common/Net/IHttpClient.cs +++ b/MediaBrowser.Common/Net/IHttpClient.cs @@ -72,5 +72,7 @@ namespace MediaBrowser.Common.Net /// progress /// Task GetTempFile(HttpRequestOptions options); + + Task GetTempFileResponse(HttpRequestOptions options); } } \ No newline at end of file -- cgit v1.2.3