I'm developing a WinForms application with SourceGear's Vault Client .NET API
I want to get more information of files that are checked out. 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.
VaultClientCheckOutList chList = ServerOperations.ProcessCommandListCheckOuts();
foreach (var item in chList.Cast<VaultClientCheckOutItem>().ToList())
{
list.Add(item.FileID.ToString());
}