The code below loops through each file of checkouts.
Problem: the only (file) properties I can access are FileId and CheckOutUsers.
Expectation: I need to get File Name and additional info if available.
Code: Select all
VaultClientCheckOutList chList = ServerOperations.ProcessCommandListCheckOuts();
foreach (var item in chList.Cast<VaultClientCheckOutItem>().ToList())
{
list.Add(item.FileID.ToString());
}