2
0

TaskCompletionStatus.cs 564 B

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