Yongwei Xing
Yongwei Xing

Reputation: 13451

How to know if a project is checked out or checked in from PSI?

How to know if a project is checked out or checked in from PSI?

Upvotes: 2

Views: 2054

Answers (1)

Alex Angas
Alex Angas

Reputation: 60058

Use Project.ReadProjectList or Project.ReadProject.

This will return a ProjectDataTable in ProjectDataSet.Project. From there you can check the PROJ_CHECKOUTBY and PROJ_CHECKOUTDATE columns.

Upvotes: 3

Related Questions