Skip to main content

Tasks.GetPendingTasksAsync

Description

The API gets the list of all pending tasks from the connected Control Room.

Signature [C#]

Task<CRTasks> GetPendingTasksAsync()

Properties

Output

PropertyDescription
Task<CRTasks>Returns all pending tasks information from the Control Room.

Remarks

Use GetPendingTasksAsync API to get the list of all pending tasks information from the connected Control Room.

Example

C#
public void GetPendingTasks()
{
IControlRoomContext context = LoginControlRoom("RegularBuild", "BasicAuth");

CRTasks cRTasks = Task.Run(() => context.Tasks.GetPendingTasksAsync()).Result;
foreach (CRTaskInfo taskData in cRTasks.Data)
System.Console.WriteLine("Task Name: " + taskData.Name);
}
C#
public IControlRoomContext LoginControlRoom()
{
IControlRoomContext context;
string connectionString;

connectionString = "ServerUrl=https://demo.onnitellibuddies.com;UserName=demoadmin;Password=password";
context = new ControlRoomContext(connectionString);

context.Open();
return context;
}