C#、Sharepoint - 分类术语的 GetDescription() 和 SetDescription()
C#, Sharepoint - GetDescription() & SetDescription() of the Taxonomy Term
我希望能够管理分类术语的 GetDescription() 和 SetDescription()(作为托管元数据)。
为了获得 Description 的值,而不是 Taxonomy Term 的 Label 的值。
我应该如何管理这些功能?
如有任何建议,我们将不胜感激。
提前致谢!
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();
}
我希望能够管理分类术语的 GetDescription() 和 SetDescription()(作为托管元数据)。 为了获得 Description 的值,而不是 Taxonomy Term 的 Label 的值。 我应该如何管理这些功能?
如有任何建议,我们将不胜感激。
提前致谢!
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();
}