jellyfin/MediaBrowser.Api/Playback/StaticRemoteStreamWriter.cs

50 lines
1.3 KiB
C#
Raw Normal View History

using MediaBrowser.Common.Net;
using ServiceStack.Web;
2013-05-17 20:05:49 +02:00
using System.Collections.Generic;
using System.IO;
namespace MediaBrowser.Api.Playback
{
/// <summary>
/// Class StaticRemoteStreamWriter
/// </summary>
public class StaticRemoteStreamWriter : IStreamWriter, IHasOptions
{
/// <summary>
/// The _input stream
/// </summary>
private readonly HttpResponseInfo _response;
2013-05-17 20:05:49 +02:00
/// <summary>
/// The _options
/// </summary>
private readonly IDictionary<string, string> _options = new Dictionary<string, string>();
public StaticRemoteStreamWriter(HttpResponseInfo response)
2013-05-17 20:05:49 +02:00
{
_response = response;
2013-05-17 20:05:49 +02:00
}
/// <summary>
/// Gets the options.
/// </summary>
/// <value>The options.</value>
public IDictionary<string, string> Options
{
get { return _options; }
}
/// <summary>
/// Writes to.
/// </summary>
/// <param name="responseStream">The response stream.</param>
public void WriteTo(Stream responseStream)
{
using (_response)
{
_response.Content.CopyTo(responseStream, 819200);
}
2013-05-17 20:05:49 +02:00
}
}
}