jellyfin/MediaBrowser.Server.Implementations/HttpServer/HttpResultFactory.cs

15 lines
355 B
C#
Raw Normal View History

2013-03-08 18:25:25 +01:00
using MediaBrowser.Common.Net;
using ServiceStack.Common.Web;
using System.IO;
namespace MediaBrowser.Server.Implementations.HttpServer
{
public class HttpResultFactory : IHttpResultFactory
{
public object GetResult(Stream stream, string contentType)
{
return new HttpResult(stream, contentType);
}
}
}