Reputation: 167
How can i checkout a document from Alfresco using dotCMIS?
Upvotes: 2
Views: 1097
Reputation: 13514
It's in the IDocument
interface:
IObjectId id = session.CreateObjectId("12345678");
IDocument doc = session.GetObject(id) as IDocument;
IDocument checkedOutDoc = doc.CheckOut() as IDocument;
Upvotes: 4