Blog

Get all the fields for the specified site content type in SharePoint 2010 using Client Object Model

Posted by Vijai Anand Blogs | SharePoint 2010 Feb 08, 2012
In this blog you will see how to get all the fields for the specified site content type 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;

            ContentType contentType = web.ContentTypes.GetById("0x01001EE585131CF22F448BB03959CA66EB11");

            FieldCollection fieldColl=contentType.Fields;

            clientContext.Load(fieldColl);

            clientContext.ExecuteQuery();

            foreach (Field field in fieldColl)

            {

                Console.WriteLine(field.Title);               

            }

            Console.ReadLine();          

        }

    }

}

 

post comment
     
COMMENT USING
PREMIUM SPONSORS
DynamicPDF™ product line allows you to dynamically generate PDF documents, merge PDF documents and add new content to existing PDF documents from within your applications.
SPONSORED BY
  • PDF reports have never been easier to create. With our included WYSIWYG Designer, you can layout your reports, set up your data source and let DynamicPDF ReportWriter do the rest.
Get Career Advice from Experts