我希望能够管理分类术语的 GetDescription() 和 SetDescription()(作为托管元数据)。为了获得描述的价值,而不是分类术语标签的价值。我应该如何管理这些功能?
任何建议将不胜感激。
先感谢您!
我希望能够管理分类术语的 GetDescription() 和 SetDescription()(作为托管元数据)。为了获得描述的价值,而不是分类术语标签的价值。我应该如何管理这些功能?
任何建议将不胜感激。
先感谢您!
using (SPSite site = new SPSite("Site URL"))
{
TaxonomySession taxonomySession = new TaxonomySession(site);
TermStore termStore = taxonomySession.TermStores["MMD Service"];
Group group = termStore.Groups["Term Group"];
TermSet termSet = group.TermSets["Term Set"];
Term term = termSet.Terms["term"];
term.SetDescription("Test", 1033);
termStore.CommitAll();
}