添加项目时,我必须将添加到文档库的项目上传到 asp.net 站点,现在我已经完成了所有身份验证,只需要上传文件,我使用的代码仅上传最大 200kb 的文件,除此之外出去。
SPFile file = properties.ListItem.File; //item added properties
byte[] myByteArray = file.OpenBinary();
System.Threading.Thread.Sleep(60000);
try
{
uint myCopyUint = SharePointCopy.CopyIntoItems(Source, DestinationURL,
myFieldInfoArray, myByteArray, out result);
}
catch (SoapException exc)
{
Console.WriteLine(exc.Message);
}
我正在使用 SharePoint 复制 Web 服务。