Interface ISearchQueryRow
Represents a single "hit" for a ISearchQuery request.
Namespace: Couchbase.Search
Assembly: Couchbase.NetClient.dll
Syntax
public interface ISearchQueryRow
Properties
| Edit this page View SourceExplanation
Detailed explanation of the search "hit".
Declaration
dynamic Explanation { get; }
Property Value
Type | Description |
---|---|
dynamic | The explanation. |
Fields
Give thes complete value of the included fields where matches occurred.
Declaration
IDictionary<string, dynamic> Fields { get; }
Property Value
Type | Description |
---|---|
IDictionary<string, object> | The fields. |
Fragments
The highlighted fragments of the search hits within the content.
Declaration
IDictionary<string, List<string>> Fragments { get; }
Property Value
Type | Description |
---|---|
IDictionary<string, List<string>> | The fragments. |
Id
The document identifier.
Declaration
string Id { get; }
Property Value
Type | Description |
---|---|
string |
Index
Gets the index used for the "hit".
Declaration
string Index { get; }
Property Value
Type | Description |
---|---|
string | The index. |
Locations
Indicates the offsets of the search terms matched inside the document.
Declaration
dynamic Locations { get; }
Property Value
Type | Description |
---|---|
dynamic | The locations. |
Score
The relative score for this "hit".
Declaration
double Score { get; }
Property Value
Type | Description |
---|---|
double |