Field-value pairs found in this document when the document was indexed.
C#
public System::Collections::Specialized::StringDictionary UserFields;
Remarks
When a document is indexed, dtSearch will store any field-value pairs found in the document when the field name matches one of the StoredFields in the IndexJob used to index this document.
Example:
SearchResultsItem item = m_results.CurrentItem;
string subject = item.UserFields["Subject"];
See Also:
Retrieving Fields in Search Results in the dtSearch Engine help file, dtSearchApiRef.chm
See Also