You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
355 B
15 lines
355 B
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);
|
|
}
|
|
}
|
|
}
|