ITaxonomyManagerCategoriesByName Method Ingeniux CMS Content Store API

Gets Category Nodes by name, filtered by locale, in a paginated fashion.

Namespace: Ingeniux.CMS
Assembly: Ingeniux.CMS.CSAPI (in Ingeniux.CMS.CSAPI.dll) Version: 9.0.565.0 (9.0.565)
Syntax

IEnumerable<ICategoryNode> CategoriesByName(
	out int count,
	ILocale locale = null,
	string name = "",
	bool searchSynonyms = false,
	int pageSize = -1,
	int startIndex = -1
)

Parameters

count
Type: SystemInt32
Total count of all matching categories
locale (Optional)
Type: Ingeniux.CMSILocale
The locale in which to search. If missing or null, uses the taxonomy manger's current locale.
name (Optional)
Type: SystemString
The name of the categories to search for
searchSynonyms (Optional)
Type: SystemBoolean
Specifies whether or not to search synonyms
pageSize (Optional)
Type: SystemInt32
Number of entries to return. If not provided, returns all entries.
startIndex (Optional)
Type: SystemInt32
Starting index of entries. If not provided, starts from the first entry.

Return Value

Type: IEnumerableICategoryNode
Collection of category node instances matching the criteria.
See Also

Reference