![]() | RemWorkflowGetDelegateUsers Method |
Namespace: Paperwork.Connect
public rKeyPairItems GetDelegateUsers( string aLoginName, string aWorkflowId, string aWorkitemId, bool isMaster = false )
public void GetDelegateUsers() { string loginName = "argus"; string workflowId = "WORKFLOW_ID"; string workitemId = "WORKITEM_ID"; rKeyPairItems retval = p.rWorkflow.GetDelegateUsers(loginName, workflowId, workitemId, false); foreach (var item in retval.Items) Console.WriteLine(item.Name); Console.ReadLine(); }