TaskIsFinishedTaskStatus Property |
Gets a value indicating whether this task is finished.
Namespace:
AGI.Parallel.Infrastructure
Assembly:
AGI.Parallel.Infrastructure (in AGI.Parallel.Infrastructure.dll) Version: 2.9.0.1601 (2.9.0.1601)
Syntax public bool IsFinishedTaskStatus { get; }
Public ReadOnly Property IsFinishedTaskStatus As Boolean
Get
Property Value
Type:
Booleantrue if this task is finished; otherwise,
false.
Remarks
This is equivalent to testing that the task status is TaskStatus.Completed, TaskStatus.Failed, TaskStatus.TimedOut,
TaskStatus.EnvironmentError, TaskStatus.Interrupted or TaskStatus.Canceled.
See Also