SIGN UP MEMBER LOGIN:    
Blog

Delete the list field in SharePoint 2010 using Client Object Model

Posted by Vijai Anand Blogs | SharePoint Feb 09, 2012
In this blog you will see how to dlete the list field in SharePoint 2010 using Client Object Model
 

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using Microsoft.SharePoint.Client;

 

namespace COM

{

    class Program

    {

        static void Main(string[] args)

        {

            string siteUrl = "http://serverName:46563/sites/MMS-CTH/";

 

            ClientContext clientContext = new ClientContext(siteUrl);

            Web web = clientContext.Web;

            List list = web.Lists.GetByTitle("CustomList");

            Field field = list.Fields.GetByTitle("Status");

            field.DeleteObject();           

            clientContext.ExecuteQuery();                    

        }

    }

}

share this blog :
post comment