Hi,
Can anyone suggest me on how can I retrieve metadata of a document in Laserfiche?
I need to retrieve values of fields of template associated with a document in Laserfiche and write to CSV file.
Thanks in advance
Hi,
Can anyone suggest me on how can I retrieve metadata of a document in Laserfiche?
I need to retrieve values of fields of template associated with a document in Laserfiche and write to CSV file.
Thanks in advance
session.LogIn("admin", "abcd12", repositoryRegistration);
var document = Entry.GetEntryInfo(1, session) as DocumentInfo;
var fieldValueCollection = document.GetFieldValues();
foreach (KeyValuePair<string, object> kv in fieldValueCollection)
{
var value = kv.Value;
var fieldName = kv.Key;
}