Description:

I have a list named "CustomList" which contains "All Items" view. In this you will see how to get all the fields from the "All Items" view.


Code:


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)

{

// siteURL is the string that contains the site URL

string siteUrl = "http://serverName:50000/sites/Testing";

// ClientContext object is used to get the context for the SharePoint objects

ClientContext clientContext = new ClientContext(siteUrl);

Web web = clientContext.Web;

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

View view = list.Views.GetByTitle("All Items");

ViewFieldCollection viewFields = view.ViewFields;

clientContext.Load(viewFields);

clientContext.ExecuteQuery();

Console.WriteLine(viewFields.SchemaXml.ToString()+"\n");

Console.ReadLine();

}

}

}




Output:


ViewFields.jpg