Click or drag to resize

TaskTaskStatus Property

Gets the task status.

Namespace:  AGI.Parallel.Infrastructure
Assembly:  AGI.Parallel.Infrastructure (in AGI.Parallel.Infrastructure.dll) Version: 2.9.0.1601 (2.9.0.1601)
Syntax
public TaskStatus TaskStatus { get; }

Property Value

Type: TaskStatus
The task status.
Examples
if (job.Tasks[0].TaskStatus == TaskStatus.Completed)
{
    // Task executed successfully.
    // Process results.
}
else
{
    // There was an issue in the task.
    // Perform error handling.
}
See Also

STK Parallel Computing Server 2.9 API for .NET