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(); } }}
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();
You need to be a premium member to use this feature. To access it, you'll have to upgrade your membership.
Become a sharper developer and jumpstart your career.
$0
$
. 00
monthly
For Basic members:
$20
For Premium members:
$45
For Elite members: