Class TaskInfo
Class TaskInfo
Inheritance
System.Object
TaskInfo
Namespace: MediaBrowser.Model.Tasks
Assembly: MediaBrowser.Model.dll
Syntax
public class TaskInfo
Constructors
TaskInfo()
Initializes a new instance of the TaskInfo class.
Declaration
public TaskInfo()
Properties
Category
Gets or sets the category.
Declaration
public string Category { get; set; }
Property Value
Type | Description |
---|---|
System.String | The category. |
CurrentProgressPercentage
Gets or sets the progress.
Declaration
public double? CurrentProgressPercentage { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Double> | The progress. |
Description
Gets or sets the description.
Declaration
public string Description { get; set; }
Property Value
Type | Description |
---|---|
System.String | The description. |
Id
Gets or sets the id.
Declaration
public string Id { get; set; }
Property Value
Type | Description |
---|---|
System.String | The id. |
IsHidden
Gets or sets a value indicating whether this instance is hidden.
Declaration
public bool IsHidden { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Key
Gets or sets the key.
Declaration
public string Key { get; set; }
Property Value
Type | Description |
---|---|
System.String | The key. |
LastExecutionResult
Gets or sets the last execution result.
Declaration
public TaskResult LastExecutionResult { get; set; }
Property Value
Type | Description |
---|---|
TaskResult | The last execution result. |
Name
Gets or sets the name.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String | The name. |
State
Gets or sets the state of the task.
Declaration
public TaskState State { get; set; }
Property Value
Type | Description |
---|---|
TaskState | The state of the task. |
Triggers
Gets or sets the triggers.
Declaration
public TaskTriggerInfo[] Triggers { get; set; }
Property Value
Type | Description |
---|---|
TaskTriggerInfo[] | The triggers. |