Hi Experts.
Please can you help. I'm using the latest version of DFS TaskManagement Service.
I want to use the TaskManagement.SuspendUntil() method in a C# project.
I’m battling to pass a TTime object through to the method. Below is my code.
DateTime dt = new DateTime();
dt = DateTime.Now;
double pot1 = 2;
dt = dt.AddDays(pot1);
TTime time = new TTime();
time.PointOfTime = dt;
time.TimePeriod = "500";
taskmanagementService.SuspendUntil(taskId, time);
The error that is thrown is: E_BPM_INVALID_PARAM_VALUE
How do I set the TTime object for this method.
Thanks
Chris