c# sharepoint client object model 创建列表库

2021-03-03 21:28

阅读:651

标签: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


评论


亲,登录后才可以留言!