TransportState.cs 388 B

12345678910111213141516
  1. #pragma warning disable CS1591
  2. namespace Emby.Dlna.PlayTo
  3. {
  4. /// <summary>
  5. /// Core of the AVTransport service. It defines the conceptually top-
  6. /// level state of the transport, for example, whether it is playing, recording, etc.
  7. /// </summary>
  8. public enum TransportState
  9. {
  10. STOPPED,
  11. PLAYING,
  12. TRANSITIONING,
  13. PAUSED_PLAYBACK
  14. }
  15. }