sharepoint网络。仅检索网站的指定属性
本文向大家介绍sharepoint网络。仅检索网站的指定属性,包括了sharepoint网络。仅检索网站的指定属性的使用技巧和注意事项,需要的朋友参考一下
示例
ClientContext clientContext = new ClientContext(siteUrl); Web oWebsite = clientContext.Web; clientContext.Load( oWebsite, website => website.Title, website => website.Created); clientContext.ExecuteQuery(); Console.WriteLine("Title: {0} Created: {1}", oWebsite.Title, oWebsite.Created);