2018-12-27 23:27:57 +00:00
|
|
|
namespace MediaBrowser.Model.Tasks
|
|
|
|
{
|
|
|
|
/// <summary>
|
2020-02-04 00:49:27 +00:00
|
|
|
/// Enum TaskCompletionStatus.
|
2018-12-27 23:27:57 +00:00
|
|
|
/// </summary>
|
|
|
|
public enum TaskCompletionStatus
|
|
|
|
{
|
|
|
|
/// <summary>
|
2020-02-04 00:49:27 +00:00
|
|
|
/// The completed.
|
2018-12-27 23:27:57 +00:00
|
|
|
/// </summary>
|
|
|
|
Completed,
|
|
|
|
|
|
|
|
/// <summary>
|
2020-02-04 00:49:27 +00:00
|
|
|
/// The failed.
|
2018-12-27 23:27:57 +00:00
|
|
|
/// </summary>
|
|
|
|
Failed,
|
|
|
|
|
|
|
|
/// <summary>
|
2020-02-04 00:49:27 +00:00
|
|
|
/// Manually cancelled by the user.
|
2018-12-27 23:27:57 +00:00
|
|
|
/// </summary>
|
|
|
|
Cancelled,
|
|
|
|
|
|
|
|
/// <summary>
|
2020-02-04 00:49:27 +00:00
|
|
|
/// Aborted due to a system failure or shutdown.
|
2018-12-27 23:27:57 +00:00
|
|
|
/// </summary>
|
|
|
|
Aborted
|
|
|
|
}
|
|
|
|
}
|