Showing posts with label sharepoint site lists c#. Show all posts
Showing posts with label sharepoint site lists c#. Show all posts

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();

        }

Featured Posts

Kali Linux Remote Desktop: Access GNOME from Windows Using Native RDP

  Kali Linux + GNOME 50 + GNOME Remote Desktop + Windows Remote Desktop (MSTSC) Getting a full GNOME desktop remotely on Kali Linux can be ...