“Client” in the namespace. For example, in the server object model you have:
- Microsoft.SharePoint.SPSite
- Microsoft.SharePoint.SPWeb
- Microsoft.SharePoint.SPList
In the client object model you have:
- Microsoft.SharePoint.Client.Site
- Microsoft.SharePoint.Client.Web
- Microsoft.SharePoint.Client.List
NameSpace:
Microsoft.SharePoint.Client.dll
Microsoft.SharePoint.Client.Runtime.dll
Example Code:
ClientContext context = new ClientContext("http://peakfinders.com");
List list = context.Web.Lists.GetByTitle("yourlistname");
CamlQuery query = new CamlQuery();
query.ViewXml = "<View><RowLimit>3</RowLimit></View>";
ListItemCollection listItems = list.GetItems(query);
context.Load(listItems);
context.ExecuteQuery();
context.ExecuteQuery();
No comments:
Post a Comment