Click or drag to resize

ISiteContentItemsByKeywords Method (String, Int32, Boolean, Boolean, Boolean, Boolean, Int32, Int32)


Retrieves a collection of Pages by keywords in the Pages' Name, and any text/xhtml field values, in a paginated fashion.

Namespace:  Ingeniux.CMS
Assembly:  Ingeniux.CMS.CSAPI (in Ingeniux.CMS.CSAPI.dll) Version: 10.5.94
Syntax
IEnumerable<IContentItem> ContentItemsByKeywords(
	string keywords,
	out int count,
	bool includePages = true,
	bool includeAsset = false,
	bool useCheckedoutContent = true,
	bool includeRecycledPages = false,
	int startIndex = -1,
	int pageSize = -1
)

Parameters

keywords
Type: SystemString
The keyword to search for
count
Type: SystemInt32
Count of total entries
includePages (Optional)
Type: SystemBoolean
Whether to include Pages in search results, default to include
includeAsset (Optional)
Type: SystemBoolean
Whether to include Asset in search results, default to false
useCheckedoutContent (Optional)
Type: SystemBoolean
Whether to use checked out Version of the Page for Pages that are checked out
includeRecycledPages (Optional)
Type: SystemBoolean
Whether to include Removed Pages in the collection.
startIndex (Optional)
Type: SystemInt32
Starting index of entries. If not provided, starts from the first entry.
pageSize (Optional)
Type: SystemInt32
Number of entries to return. If not provided, returns all entries.

Return Value

Type: IEnumerableIContentItem
Collection of Pages that contains the searching keyword in its Name or any text/xhtml fields.
Remarks

The method call pulls results from a Full-Text index created on the Content Store. Due to the full text nature of the index, you will immediately have the results, but it may not always 100% up-to-date on the latest changes.

See Also