PublicAPI.Docflow.Tasks.GetTaskByResolution ELMA API Documentation
Get all the decision tasks
 
 
Syntax

public IEnumerable<TaskBase> GetTaskByResolution(
	Resolution resolution
)

Parameters

resolution
Type: Resolution
Decision, whose tasks need to be obtained. Object. Access path: PublicAPI.Docflow.Objects.Resolution

Return Value

Type: IEnumerable TaskBase 
List of decision tasks
Examples

//load the decision by ID 
var decision = PublicAPI.Docflow.Objects.Resolution.Load(3);

//get the list of decision tasks 
var taskList = PublicAPI.Docflow.Tasks.GetTaskByResolution(decision);

//taskList - obtained list of the decision tasks
See Also