Hi,
Is there a possibility to send a document to Record Center using the CSOM?
Server side I can do this for example:
OfficialFileResult result = OfficialFileCore.SubmitFile(web, fileInput, properties.ToArray(), "MyContentType", filename, @"SP2013\administrator", false, out destination);
OR
SPList oList = oElevWeb.Lists["Shared Documents"];
SPFile oFile = oList.Items[0].File;
string strOutPut;
oFile.SendToOfficialFile(out strOutPut);Are there similar ways to do this using the SharePoint Client Object Model?
Regards,
Atli