Returns the word interpretations for the record search.

Namespace: Endeca.Navigation
Assembly: Endeca.Navigation (in Endeca.Navigation.dll) Version: 6.2.0.0 (6.2.2.8614)

Syntax

C#
public virtual PropertyMap WordInterps { get; }
Visual Basic
Public Overridable ReadOnly Property WordInterps As PropertyMap
	Get
Visual C++
public:
virtual property PropertyMap^ WordInterps {
	PropertyMap^ get ();
}

Field Value

A PropertyMap representing the set of work interpretations.

Remarks

A word interpretation is the treatment of one or more query terms as some other terms during search processing. For example, assume the index contains the following thesaurus entry:
CopyC#
cab > cabernet

If a search is performed for the term cab and there is a match for cabernet, a single word interpretation will be returned with the key cab and a value of cabernet.

In the Automatic Phrasing feature, for each contiguous subsequence of query terms that was treated as a quoted phrase during search processing, a word interpretation will be returned with the original query terms as the key and the query terms in double quotes as the value.

Note that the MDEX Engine's --wordinterp flag must be used to obtain any results from WordInterps.

See Also