PDMWorks Enterprise API - List of Data Cards in a Vault

I am new to the PDMWorks Enterprise API, and am developing astandalone C# application that logs into a PDMWorks Enterprisevault and retrieves vault information.

Looking through the API documentation, I have not been able to finda method to retrieve a list of data cards defined for a particularvault. So far my method looks like this:

EdmVault5 vault = new EdmVault5();
vault.Login("username", "password", "vaultname");

IEdmPos5 pos = folder.GetFirstFilePosition();

if (pos.IsNull)
message = "The root folder of your vault does not contain anyfiles";
else
message = "The root folder of your vault contains files";



Does anyone know if there is there a method I could use to obtain alist of vault data cards with the name, type, and file extensionsfor each card?SolidworksApi macros