首页 > Windows开发 > 详细

c# sharepoint client object model 创建工作流历史记录

时间:2020-05-26 12:20:36      阅读:38      评论:0      收藏:0      [点我收藏+]

ClientTools tools = new ClientTools();
ClientContext clientContext= tools.GetContext(OnlineSiteUrl, User, Pass, true); //false 本地 true ONline

Web web = clientContext.Site.OpenWeb("WebUrl");
clientContext.Load(web);
clientContext.ExecuteQuery();
clientContext.Dispose();

ListCreationInformation creationInfo = new ListCreationInformation();
creationInfo.Title = "工作流历史记录";
creationInfo.Url = "WorkflowHistory";
creationInfo.Description = "Description";
creationInfo.TemplateType = (Int32)ListTemplateType.WorkflowHistory;

list ourHistoryList = web.Lists.Add(creationInfo);
ourHistoryList.Update();
clientContext.ExecuteQuery();
clientContext.Load(ourHistoryList);
clientContext.ExecuteQuery();

c# sharepoint client object model 创建工作流历史记录

原文:https://www.cnblogs.com/selenazhou/p/12964620.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!