TaskCompletionStatus.cs 565 B

12345678910111213141516171819202122232425262728
  1. namespace MediaBrowser.Model.Tasks
  2. {
  3. /// <summary>
  4. /// Enum TaskCompletionStatus.
  5. /// </summary>
  6. public enum TaskCompletionStatus
  7. {
  8. /// <summary>
  9. /// The completed.
  10. /// </summary>
  11. Completed,
  12. /// <summary>
  13. /// The failed.
  14. /// </summary>
  15. Failed,
  16. /// <summary>
  17. /// Manually cancelled by the user.
  18. /// </summary>
  19. Cancelled,
  20. /// <summary>
  21. /// Aborted due to a system failure or shutdown.
  22. /// </summary>
  23. Aborted
  24. }
  25. }