"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");
Web web = context.Web;
List list = web.Lists.GetByTitle("yourlistname");
ListItemCreationInformation newItem = new ListItemCreationInformation();
ListItem listItem = list.AddItem(newItem);
listItem["Title"] = "Peakfinder";
listItem.Update();
context.ExecuteQuery();
No comments:
Post a Comment