Skip to main content

Tasks.GetMyTasksAsync

Description

The API gets the list of tasks for the current user.

Signature [C#]

Task<CRTasks> GetMyTasksAsync()

Properties

Output

PropertyDescription
Task<CRTasks>Returns tasks information for current user.

Remarks

Use GetMyTasksAsync API to get the list of tasks information for the current.

Example

C#
public void GetAllTasks()
{
IControlRoomContext context = LoginControlRoom();

CRTasks cRTasks = Task.Run(() => context.Tasks.GetMyTasksAsync()).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;
}