Page 1 of 1

How do I get the latest version a project using .NET API?

Posted: Fri Jul 08, 2016 2:58 am
by Tanguy
I want to know how to get the latest version of a project.

I'm using Vault Client .NET API.

Re: How do I get the latest version a project using .NET API

Posted: Fri Jul 08, 2016 10:12 am
by Beth
Here is a basic get on a folder.

Code: Select all

            GetOptions getOptions = new GetOptions();
            getOptions.Recursive = true;
            GetOperations.ProcessCommandGet(new string[] { diskPath }, getOptions);

Re: How do I get the latest version a project using .NET API

Posted: Thu Jul 14, 2016 12:48 am
by Tanguy
Thank you Beth. That's the exact solution to my problem.