Skip to content

Task

Task can be used to store data returned by a RunTask function.

This is especially useful when RunTask is performed out of scope from the rest of the process flow, e.g., when inside an IfElse loop. By using a SetValue function to assign the returned data to a Task that is outside of the IfElse loop, the data becomes in scope to the rest of the process flow.


Provide a name for the Task.


Task holds the following values:

  • Task
    • Id (Int32)
    • IsCompleted (Boolean)
    • IsCompletedSuccessfully (Boolean)
    • IsFaulted (Boolean)
    • Error (String)