Tagged Questions
2
votes
1answer
476 views
Check Out, Update, then Check In a File in SharePoint Client Object Model
I would like to programatically update a SharePoint file by checkout/checkin.
I have written code that looks like it should do what I want it to do:
static void ...
1
vote
1answer
2k views
How to programmatically retrieve item version history from client?
Using server-side code I can access List Item version history using SPListItem.Versions.
Is there a way to programmatically access the same information from the client?
I am happy to use either the ...
2
votes
1answer
963 views
Document versioning - different doc types
I have a document library with versioning enabled. Documents are now in some other system and I need to migrate them. The problem is thath different verions migth have diffrente file types (doc, docx, ...
2
votes
3answers
2k views
Uploading file version - Client Object Model
I have a library with versioned files. I have versioned files prepared for uploading (1 version = 1 file). How do I create new version? Do I just set file's Content property and Update it? Please ...