RemDocumentHistory Method |
Namespace: Paperwork.Connect
public a_HistoryList History( ObjectID objectId, int pageIndex )
public void History()
{
string str_objectId = "FF00010000000001";
ObjectID oid = new ObjectID(str_objectId);
int pageindex = 1;
a_HistoryList retval = p.rDocument.History(oid, pageindex);
foreach (a_History his in retval.Items)
Console.WriteLine("Sahibi: {0}, İşlem Tarihi: {1}, İşlem Tipi: {2}, Açıklama: {3}", his.Owner, his.CreatedDate, his.HistoryType, his.Description);
Console.ReadLine();
}