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
stringName of the language in which the tag data are retrieved.
cancellationToken
CancellationTokenCancellation 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
stringTaxonomy name.
languageName
stringName of the language in which the taxonomy data are retrieved.
cancellationToken
CancellationTokenCancellation token.
Returns
- Task<TaxonomyData>