I downloaded the client API stuff and started modifying the DoListUsers routine - however, when I try this:
Code: Select all
foreach ( VaultClientNetLib.AdminService.VaultFolderRightsItem anItem in u.FolderRights )
More generally, is there any documentation on the other Vault assemblies than VaultClientOperationsLib ? The command line client uses other libraries like VaultClientNetLib and VaultLib, but I didn't see any .chm for those.
OK, if I may slip in another question and get a "two-fer" here...
I'm also trying (elsewhere) to decode the "action" parameter in the history items. However, the switch-case is failing to nail the item - it always hits the "default" case. Any ideas?!
Code: Select all
// item = a valid VaultHistoryItem
switch (item.HistItemType)
case VaultHistoryType.Added:
// ...
break;
...
case default:
// this always fires!