Steps
- Open Visual Studio in your system.
- Select Console Application template and give as name.
- Add a Microsoft.Client Assembly reference file in right side reference tab in visual studio.
- Replace Program.cs with the source code.
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using Microsoft.SharePoint.Client;
- namespace CSOMCodeSamples
- {
- class Program
- {
- static void Main(string[] args)
- {
- // ClienContext - Get the context for the SharePoint Site
- ClientContext clientContext = new ClientContext("http://gauti.sharepoint.com/sites/sp/");
- // Get the SharePoint web
- Web web = clientContext.Web;
- // Update the web Title and Description properties
- web.Title = "Website Properties Updated";
- web.Description = "Updated the website title using CSOM";
- web.Update();
- clientContext.Load(web);
- clientContext.ExecuteQuery();
- Console.WriteLine("Title:> " + web.Title + "; Description:> " + web.Description);
- Console.ReadLine();
- }
- }
- }
Output
Hit F5 and check the output.
Thanks for reading my blogs.

Vijay SPosted Jun 17, 2015, 9:09 AM
Good one