How to retrive the List templates are available in the Sharepoint 2013 using CSOM

Steps
  • Open Visual Studio in your system.

  • Select Console Application template and give as name .

  • Add a Microsoft.Client Assembly reference file in right side reference tab in visual studio.

  • Replace Program.cs with the source code.
  1. using System;  
  2. using System.Collections.Generic;  
  3. using System.Linq;  
  4. using System.Text;  
  5. using System.Threading.Tasks;  
  6. using Microsoft.SharePoint.Client;  
  7. namespace CSOMCodeSamples   
  8. {  
  9.     class Program   
  10.     {  
  11.         static void Main(string[] args)   
  12.         {  
  13.             //ClientContext - Get the context for the SharePoint Site    
  14.             ClientContext clientContext = new ClientContext("http://gauti.sharepoint.com/sites/sp/");  
  15.             //Get the SharePoint web    
  16.             Web web = clientContext.Web;  
  17.             ListTemplateCollection templateColl = web.ListTemplates;  
  18.             clientContext.Load(templateColl);  
  19.             //Execute the query to the server    
  20.             clientContext.ExecuteQuery();  
  21.             // Loop through all the list templates    
  22.             foreach(ListTemplate template in templateColl)   
  23.             {  
  24.                 Console.WriteLine("Template Name: " + template.Name);  
  25.             }  
  26.             Console.ReadLine();  
  27.         }  
  28.     }  
  29. }  
Output

Hit F5 and check the output.

Thanks for reading my blogs.