The Main Business layer of Taxonomy.

Namespace: DotNetNuke.Entities.Content.Taxonomy
Assembly: DotNetNuke (in DotNetNuke.dll)

Syntax

C#
public class TermController : ITermController
Visual Basic
Public Class TermController
	Implements ITermController

Examples

C# Copy imageCopy Code
internal static List<Term> GetTerms(this Vocabulary voc, int vocabularyId)
{
    ITermController ctl = Util.GetTermController();
    return ctl.GetTermsByVocabulary(vocabularyId).ToList();
}

Inheritance Hierarchy

System..::..Object
  DotNetNuke.Entities.Content.Taxonomy..::..TermController

See Also