-1

我希望能够管理分类术语的 GetDescription() 和 SetDescription()(作为托管元数据)。为了获得描述的价值,而不是分类术语标签的价值。我应该如何管理这些功能?

任何建议将不胜感激。

先感谢您!

4

1 回答 1

0
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();            
            }
于 2017-11-27T15:02:57.293 回答