Get the default language LCID for the term store using Client Side Object Model in SharePoint 2013:

Navigate to the Central Administration. Click on Application Management. Click on Manage service applications which is available under Service Applications. Click on MMS (Managed Metadata Service). Click on MMS termstore in the Taxonomy Term Store. In the right hand side you can see the default language for the term store. [Note: Default language for MMS termstore is English – LCID 1033].

Steps Involved:

1.       Open Visual Studio 2012 (Run as administrator).

2.       Go to File=> New => Project.

3.       Select Console Application in the Visual C# node from the installed templates.

4.       Enter the Name and click on Ok.

5.       In the solution explorer, right click on References folder and then click on Add Reference.

6.       Add the following assemblies from 15 hive (C:\Program Files\Common Files\microsoft shared\Web Server Extensions\15\ISAPI).

a.       Microsoft.SharePoint.Client.dll

b.      Microsoft.SharePoint.Client.Runtime.dll

c.       Microsoft.SharePoint.Client.Taxonomy.dll

7.       Open Program.cs file and replace the code with the following

 

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Threading.Tasks;

using Microsoft.SharePoint.Client;

using Microsoft.SharePoint.Client.Taxonomy;

 

namespace ManagedMetadataClient

{

    class Program

    {

        static void Main(string[] args)

        {

            // ClienContext - Get the context for the SharePoint Site

            // SharePoint site URL - http://c4968397007/

            ClientContext clientContext = new ClientContext("http://c4968397007/");

 

            // Get the TaxonomySession

            TaxonomySession taxonomySession = TaxonomySession.GetTaxonomySession(clientContext);

 

            // Get the term store by name

            TermStore termStore = taxonomySession.TermStores.GetByName("MMS");

 

            // Retrieve term store

            clientContext.Load(termStore);

 

            // Execute the query to the server

            clientContext.ExecuteQuery();

 

            // Display the default language LCID

            Console.WriteLine(termStore.DefaultLanguage);

            Console.ReadLine();

        }

    }

}



1033 will be the output.