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

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();

猜你喜欢

转载自www.cnblogs.com/selenazhou/p/12964620.html