Couchbase .NET SDK __CB_SDK_VERSION__

Show / Hide Table of Contents

Interface ISearchQueryRow

Represents a single "hit" for a ISearchQuery request.

Namespace: Couchbase.Search
Assembly: Couchbase.NetClient.dll
Syntax
public interface ISearchQueryRow

Properties

View Source

Explanation

Detailed explanation of the search "hit".

Declaration
dynamic Explanation { get; }
Property Value
Type Description
dynamic

The explanation.

View Source

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.

View Source

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.

View Source

Id

The document identifier.

Declaration
string Id { get; }
Property Value
Type Description
string
View Source

Index

Gets the index used for the "hit".

Declaration
string Index { get; }
Property Value
Type Description
string

The index.

View Source

Locations

Indicates the offsets of the search terms matched inside the document.

Declaration
dynamic Locations { get; }
Property Value
Type Description
dynamic

The locations.

View Source

Score

The relative score for this "hit".

Declaration
double Score { get; }
Property Value
Type Description
double
  • View Source
In this article
Back to top Copyright © 2020 Couchbase, Inc. All rights reserved.