Gets a dictionary of the snippets associated with this record. Note that this dictionary will only contain one entry per property.

Namespace:  Endeca.Data
Assembly:  Endeca.Data (in Endeca.Data.dll) Version: 2.1.1.0 (2.1.1.620)

Syntax

C#
public ReadOnlyDictionary<string, string> Snippets { get; }
Visual Basic (Declaration)
Public ReadOnly Property Snippets As ReadOnlyDictionary(Of String, String)
Visual C++
public:
property ReadOnlyDictionary<String^, String^>^ Snippets {
	ReadOnlyDictionary<String^, String^>^ get ();
}

Remarks

A snippet is an excerpt from this record that matches a given search. More specifically, if a search matches one or more of the properties of this record, the snippet displays the text surrounding the match, to help provide to a user some context regarding the match.

The dictionary returned by this property maps property names to snippet text. Therefore if a given search matches multiple properties, then there will be multiple entries in the dictionary.

Note that this map will be empty unless the Snippeting feature is enabled in Developer Studio, and a text search is performed.

See Also