Click or drag to resize

RemWorkflowGetNotes Method

Paperwork .Net Kütüphanesi
İstenilen akışa ait notları getirir. (Detaylı)

Namespace:  Paperwork.Connect
Assembly:  Paperwork.Connect (in Paperwork.Connect.dll) Version: 5.0.0.0
Syntax
C#
public rNotesList GetNotes(
	string aWorkflowId,
	int aPageIndex = -1
)

Parameters

aWorkflowId
Type: SystemString
İş akışı nesne numarası.
aPageIndex (Optional)
Type: SystemInt32
Sayfa numarası.(varsayılan değeri -1)

Return Value

Type: rNotesList
rNotesList türünde akışa ait notlar döner.
Examples
C#
  
            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;
            }
See Also