C# Corner
Tech
News
Videos
Forums
Jobs
Books
Events
More
Interviews
Live
Learn
Training
Career
Members
Blogs
Challenges
Certification
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
How to create a new group for the term store
WhatsApp
Gowtham Rajamanickam
9y
2.6
k
0
0
25
Blog
Steps
Open Visual Studio in your system.
Select Console Applciation template and give as name.
Add a Microsoft.Cleint Assembly refrence file in right side refrence tab in visual studio.
Replace Program.cs with the source code.
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
CSOMCodeSamples
{
class
Program
{
static
void
Main(
string
[] args)
{
ClientContext clientContext =
new
ClientContext(
"http://gauti.sharepoint.com/sp/gvr"
);
// Get the TaxonomySession
TaxonomySession taxonomySession = TaxonomySession.GetTaxonomySession(clientContext);
// Get the term store by name
TermStore termStore = taxonomySession.TermStores.GetByName(
"GVR"
);
// Create a new guid for group
Guid guid = Guid.NewGuid();
// Create a new group
TermGroup termGroup = termStore.CreateGroup(
"NewGroup"
, guid);
// Commit all the changes
termStore.CommitAll();
// Execute the query to the server
clientContext.ExecuteQuery();
}
}
}
Hit F5 and Check the output...
Thanks for learning my blogs!!!
How to create a new group for the term store
Recommended related topics
Membership not found