IAsyncStreamSource.cs 456 B

123456789101112131415161718
  1. using ServiceStack.Web;
  2. using System.IO;
  3. using System.Threading.Tasks;
  4. namespace MediaBrowser.Controller.Net
  5. {
  6. /// <summary>
  7. /// Interface IAsyncStreamSource
  8. /// Enables asynchronous writing to http resonse streams
  9. /// </summary>
  10. public interface IAsyncStreamSource
  11. {
  12. /// <summary>
  13. /// Asynchronously write to the response stream.
  14. /// </summary>
  15. Task WriteToAsync(Stream responseStream);
  16. }
  17. }