SendCommandType.cs 686 B

12345678910111213141516171819202122232425262728
  1. namespace MediaBrowser.Model.SyncPlay
  2. {
  3. /// <summary>
  4. /// Enum SendCommandType.
  5. /// </summary>
  6. public enum SendCommandType
  7. {
  8. /// <summary>
  9. /// The unpause command. Instructs users to unpause playback.
  10. /// </summary>
  11. Unpause = 0,
  12. /// <summary>
  13. /// The pause command. Instructs users to pause playback.
  14. /// </summary>
  15. Pause = 1,
  16. /// <summary>
  17. /// The stop command. Instructs users to stop playback.
  18. /// </summary>
  19. Stop = 2,
  20. /// <summary>
  21. /// The seek command. Instructs users to seek to a specified time.
  22. /// </summary>
  23. Seek = 3
  24. }
  25. }