From 58c77529d218993c61fa80ad9a049f90f779741b Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Sat, 20 Apr 2013 18:19:55 -0400 Subject: removed superfluous GetMemoryStream --- .../HttpClientManager/HttpResponseInfo.cs | 40 ++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 MediaBrowser.Common.Implementations/HttpClientManager/HttpResponseInfo.cs (limited to 'MediaBrowser.Common.Implementations/HttpClientManager/HttpResponseInfo.cs') diff --git a/MediaBrowser.Common.Implementations/HttpClientManager/HttpResponseInfo.cs b/MediaBrowser.Common.Implementations/HttpClientManager/HttpResponseInfo.cs new file mode 100644 index 000000000..240e99d79 --- /dev/null +++ b/MediaBrowser.Common.Implementations/HttpClientManager/HttpResponseInfo.cs @@ -0,0 +1,40 @@ +using System; + +namespace MediaBrowser.Common.Implementations.HttpClientManager +{ + /// + /// Class HttpResponseOutput + /// + public class HttpResponseInfo + { + /// + /// Gets or sets the URL. + /// + /// The URL. + public string Url { get; set; } + + /// + /// Gets or sets the etag. + /// + /// The etag. + public string Etag { get; set; } + + /// + /// Gets or sets the last modified. + /// + /// The last modified. + public DateTime? LastModified { get; set; } + + /// + /// Gets or sets the expires. + /// + /// The expires. + public DateTime? Expires { get; set; } + + /// + /// Gets or sets a value indicating whether [must revalidate]. + /// + /// true if [must revalidate]; otherwise, false. + public bool MustRevalidate { get; set; } + } +} -- cgit v1.2.3