MediaStreamProtocol.cs 440 B

12345678910111213141516171819202122
  1. #pragma warning disable SA1300 // Lowercase required for backwards compat.
  2. using System.ComponentModel;
  3. namespace Jellyfin.Data.Enums;
  4. /// <summary>
  5. /// Media streaming protocol.
  6. /// Lowercase for backwards compatibility.
  7. /// </summary>
  8. [DefaultValue(http)]
  9. public enum MediaStreamProtocol
  10. {
  11. /// <summary>
  12. /// HTTP.
  13. /// </summary>
  14. http = 0,
  15. /// <summary>
  16. /// HTTP Live Streaming.
  17. /// </summary>
  18. hls = 1
  19. }