Task.IsFinishedTaskStatus 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.10.0.1777 (2.10.0.1777)
Syntaxpublic 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