TaskLastTaskResult Property

Gets the results that were returned the last time the registered task was run.

Definition

Namespace: Microsoft.Win32.TaskScheduler
Assembly: Microsoft.Win32.TaskScheduler (in Microsoft.Win32.TaskScheduler.dll) Version: 2.11.0
public int LastTaskResult { get; }

Property Value

Int32

Remarks

The value returned is the last exit code of the last program run via an ExecAction.

Example

C#
// See if the last run of a task returned an error code
if (TaskService.Instance.GetTask("MyTask").LastTaskResult != 0)
MessageBox.Show("This program has an error.");

See Also