我是sharepoint的新手,所以这是我的问题,如果有人可以帮助我,尝试更新我上传的文件的元数据,但是在添加元数据时我得到一个错误SytemBagImageFormatException这里是代码: 这会正常上传文件
using(PageData pageData = pdfProvider.GetDocument(rendition)
{
using(Stream stream = pageData.Stream)
{ Microsoft.SharePoint.Client.File.SaveBinaryDirect(context, destinoArchivo, stream, true);
}
}
但是当我这样做时,我得到错误:
Microsoft.SharePoint.Client.File newFile = context.Web.GetFileByServerRelativeUrl(destinoArchivo);
context.Load(newFile);
context.ExecuteQuery();
newFile.CheckOut();
ListItem listItem = newFile.ListItemAllFields;
listItem["Clase de Documento"] = "Prueba";
listItem.Update();
newFile.CheckIn(string.Empty, CheckinType.OverwriteCheckIn);
谁能告诉我它有什么问题,我好像能看到它。