SharePoint Error: The server does not allow messages larger than 2097152 bytes

后端 未结 4 2050
渐次进展
渐次进展 2021-02-19 09:08

I have web service that point to sharepoint 2013 Office 365. I use the client object model. I am trying to update the xml file which stores 4 attachments in it. When I do thi

4条回答
  •  隐瞒了意图╮
    2021-02-19 09:33

    use .ContentStream instead of .Content

     //newFile.Content = System.IO.File.ReadAllBytes(file);
    
    
    newFile.ContentStream = new MemoryStream(System.IO.File.ReadAllBytes(file));
    

提交回复
热议问题