HttpResultFactory.cs 355 B

1234567891011121314
  1. using MediaBrowser.Common.Net;
  2. using ServiceStack.Common.Web;
  3. using System.IO;
  4. namespace MediaBrowser.Server.Implementations.HttpServer
  5. {
  6. public class HttpResultFactory : IHttpResultFactory
  7. {
  8. public object GetResult(Stream stream, string contentType)
  9. {
  10. return new HttpResult(stream, contentType);
  11. }
  12. }
  13. }