IHttpResultFactory.cs 172 B

123456789
  1. using System.IO;
  2. namespace MediaBrowser.Common.Net
  3. {
  4. public interface IHttpResultFactory
  5. {
  6. object GetResult(Stream stream, string contentType);
  7. }
  8. }