IDirectStreamProvider.cs 460 B

12345678910111213141516171819
  1. using System.IO;
  2. namespace MediaBrowser.Controller.Library
  3. {
  4. /// <summary>
  5. /// The direct live TV stream provider.
  6. /// </summary>
  7. /// <remarks>
  8. /// Deprecated.
  9. /// </remarks>
  10. public interface IDirectStreamProvider
  11. {
  12. /// <summary>
  13. /// Gets the live stream, shared streams seek to the end of the file first.
  14. /// </summary>
  15. /// <returns>The stream.</returns>
  16. Stream GetStream();
  17. }
  18. }