Table of Contents

Interface ITaxonomyRetriever

Namespace
CMS.ContentEngine
Assembly
CMS.ContentEngine.dll

Defines an interface for retrieving taxonomy groups and tags.

public interface ITaxonomyRetriever
Extension Methods

Methods

RetrieveTags(IEnumerable<Guid>, string, CancellationToken)

Retrieve tags specified by their identifiers in identifiers.

Task<IEnumerable<Tag>> RetrieveTags(IEnumerable<Guid> identifiers, string languageName, CancellationToken cancellationToken = default)

Parameters

identifiers IEnumerable<Guid>

Tag identifiers.

languageName string

Name of the language in which the tag data are retrieved.

cancellationToken CancellationToken

Cancellation token.

Returns

Task<IEnumerable<Tag>>

RetrieveTaxonomy(string, string, CancellationToken)

Retrieves taxonomy with all of its tags.

Task<TaxonomyData> RetrieveTaxonomy(string taxonomyName, string languageName, CancellationToken cancellationToken = default)

Parameters

taxonomyName string

Taxonomy name.

languageName string

Name of the language in which the taxonomy data are retrieved.

cancellationToken CancellationToken

Cancellation token.

Returns

Task<TaxonomyData>