码迷,mamicode.com
首页 > Windows程序 > 详细

c# sharepoint client object model 创建列表库

时间:2020-05-26 12:30:17      阅读:99      评论:0      收藏:0      [点我收藏+]

标签:generic   mod   form   lin   ntc   ref   pen   creation   tool   

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 = "Title";
creationInfo.Description = "Description";
creationInfo.TemplateType = 100;
//creationInfo.TemplateType = (Int32)ListTemplateType.GenericList;
web.Lists.Add(creationInfo);
clientContext.ExecuteQuery();

c# sharepoint client object model 创建列表库

标签:generic   mod   form   lin   ntc   ref   pen   creation   tool   

原文地址:https://www.cnblogs.com/selenazhou/p/12964565.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!