I am creating a menu control that read terms from taxonomy term store. Get termSet and term is straight forward
using (SPSite siteCollection = new SPSite(siteCollecitonUrl))
{
TaxonomySession taxSession = new TaxonomySession(siteCollection);
TermStore taxStore = taxSession.TermStores[0];
Group taxGroup = taxStore.GetSiteCollectionGroup(siteCollection);
TermSet termSet = taxGroup.TermSets[strTermSetsName];
foreach (term in termSet.terms)
{
term.???
}
}
but how to retrieve friendly URL or simple url link?
I could not find a property or method.
Thank you.