mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-08-27 04:16:47 +00:00
removed superfluous GetMemoryStream
This commit is contained in:
parent
14a806b900
commit
58c77529d2
7 changed files with 255 additions and 83 deletions
|
|
@ -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; }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue