Tuesday, June 7, 2011

Getting List of all list in a sharepoint site using client object model


using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Microsoft.SharePoint.Client;
using Microsoft.SharePoint.Client.Utilities;

        private static void GetAllListsinCurrentWeb()
        {
            ClientContext Context = new ClientContext(“http://sharepointsite/“);
            Web Web= Context.Web;
            Context.Load(oWeb);
            Context.ExecuteQuery();
            ListCollection currentListCollection= oWeb.Lists;
            Context.Load(currentListCollection);
            Context.ExecuteQuery();
            foreach (List List in currentListCollection)
            {
                Console.WriteLine(List.Title);
            }
            Console.ReadLine();

        }

No comments:

Post a Comment

Thank you for Commenting Will reply soon ......

Featured Posts

#Linux Commands Unveiled: #date, #uname, #hostname, #hostid, #arch, #nproc

 #Linux Commands Unveiled: #date, #uname, #hostname, #hostid, #arch, #nproc Linux is an open-source operating system that is loved by millio...