WebHosting

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

How to Enable and Configure Remote Desktop (RDP) on Ubuntu 24.04.4 LTS

Remote Desktop Protocol (RDP) support in Ubuntu has become considerably easier with the GNOME Remote Desktop stack included in modern Ubuntu...