Click or drag to resize

RemWorkflowGetAttachmentHistory Method

Paperwork .Net Kütüphanesi
İstenilen iş adımının bilgilerini getirir. (Akışın eki(dosya kartı, belge vb.) var ise bilgisini getirir.)

Namespace:  Paperwork.Connect
Assembly:  Paperwork.Connect (in Paperwork.Connect.dll) Version: 5.0.0.0
Syntax
C#
public rAttachmentHistoryList GetAttachmentHistory(
	string workflowId
)

Parameters

workflowId
Type: SystemString
İş akışı nesne numarası.

Return Value

Type: rAttachmentHistoryList
rAttachmentHistoryList türünde istenilen iş adımının bilgilerini döner.
Examples
C#
  
            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();
             }
See Also