aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common.Implementations/HttpClientManager/HttpResponseInfo.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-04-20 18:19:55 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-04-20 18:19:55 -0400
commit58c77529d218993c61fa80ad9a049f90f779741b (patch)
tree22bfacf62341726d040116e3a0560cbef649964e /MediaBrowser.Common.Implementations/HttpClientManager/HttpResponseInfo.cs
parent14a806b90067934027c19d3b4662b92a118f18a8 (diff)
removed superfluous GetMemoryStream
Diffstat (limited to 'MediaBrowser.Common.Implementations/HttpClientManager/HttpResponseInfo.cs')
-rw-r--r--MediaBrowser.Common.Implementations/HttpClientManager/HttpResponseInfo.cs40
1 files changed, 40 insertions, 0 deletions
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
+{
+ /// <summary>
+ /// Class HttpResponseOutput
+ /// </summary>
+ public class HttpResponseInfo
+ {
+ /// <summary>
+ /// Gets or sets the URL.
+ /// </summary>
+ /// <value>The URL.</value>
+ public string Url { get; set; }
+
+ /// <summary>
+ /// Gets or sets the etag.
+ /// </summary>
+ /// <value>The etag.</value>
+ public string Etag { get; set; }
+
+ /// <summary>
+ /// Gets or sets the last modified.
+ /// </summary>
+ /// <value>The last modified.</value>
+ public DateTime? LastModified { get; set; }
+
+ /// <summary>
+ /// Gets or sets the expires.
+ /// </summary>
+ /// <value>The expires.</value>
+ public DateTime? Expires { get; set; }
+
+ /// <summary>
+ /// Gets or sets a value indicating whether [must revalidate].
+ /// </summary>
+ /// <value><c>true</c> if [must revalidate]; otherwise, <c>false</c>.</value>
+ public bool MustRevalidate { get; set; }
+ }
+}