![]() | RemWorkflowGetNotes Method |
Namespace: Paperwork.Connect
public rNotesList GetNotes( string aWorkflowId, int aPageIndex = -1 )
public string WorkflowGetNotes() { string wfId = "WORKFLOW_ID"; int aPageIndex = -1; rNotesList retval = p.rWorkflow.GetNotes(wfId, aPageIndex); int i = 1; foreach (var item in retval.Items) { Console.WriteLine(i + ". " + item.CreateDate); Console.WriteLine(i + ". " + item.LoginName); Console.WriteLine(i + ". " + item.Message); Console.WriteLine(i + ". " + item.NoteId); Console.WriteLine(i + ". " + item.Owner); Console.WriteLine(i + ". " + item.Parent); i++; } Console.ReadLine(); return wfId; }