RemDocumentGetSubscribtions Method |
Namespace: Paperwork.Connect
public List<a_Subscription> GetSubscribtions( ObjectID objectId, bool isAll )
public void GetSubscribtions()
{
//Belgeye abone olan bütün kullanıcıları gösterir.
ObjectID objectId = new ObjectID("FF000100000033F5");
List<a_Subscription> retval = p.rDocument.GetSubscribtions(objectId, true);
foreach (a_Subscription subs in retval)
Console.WriteLine("İşlem Tarihi: {0}, Sahibi: {1}, Abone olan: {2} ", subs.CreateDate, subs.Owner, subs.Subscriber);
Console.ReadLine();
}