RemWorkflowGetAttachmentHistory Method |
Namespace: Paperwork.Connect
public rAttachmentHistoryList GetAttachmentHistory( string workflowId )
public void GetAttachmentHistory()
{
string workflowId = "WORKFLOW_ID";
rAttachmentHistoryList retval = p.rWorkflow.GetAttachmentHistory(workflowId);
foreach (var item in a.Items)
{
Console.WriteLine(item.AclId);
Console.WriteLine(item.AttachmentId);
Console.WriteLine(item.ContentType);
Console.WriteLine(item.FormName);
Console.WriteLine(item.CreateDate);
Console.WriteLine(item.ObjectName);
Console.WriteLine(item.ObjectType);
Console.WriteLine(item.WorkitemName);
}
Console.ReadLine();
}