Click or drag to resize

SphinxClientBuildKeywords Method

Builds a list of keywords from the given query, using the settings from the specified index.

Namespace:  SphinxConnector.NativeApi
Assembly:  SphinxConnector (in SphinxConnector.dll) Version: 5.3.0
Syntax
public IList<SphinxBuildKeywordResult> BuildKeywords(
	string query,
	string index,
	bool includeStatistics
)

Parameters

query
Type: SystemString
The query.
index
Type: SystemString
The index to use settings from.
includeStatistics
Type: SystemBoolean
if set to true includes statistics in the result.

Return Value

Type: IListSphinxBuildKeywordResult
A list of SphinxBuildKeywordResult instances.
Exceptions
ExceptionCondition
ArgumentNullExceptionquery or index is null.
ArgumentExceptionquery or index is empty.
SphinxClientException An error occured while executing the request. See exception message and inner exception for details.
See Also