Couchbase .NET SDK __CB_SDK_VERSION__

Show / Hide Table of Contents

Class SearchQueryRow

Represents a single "hit" for a ISearchQuery request.

Inheritance
object
SearchQueryRow
Implements
ISearchQueryRow
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Couchbase.Search
Assembly: Couchbase.NetClient.dll
Syntax
public class SearchQueryRow : ISearchQueryRow

Constructors

View Source

SearchQueryRow()

Declaration
public SearchQueryRow()

Properties

View Source

Explanation

Detailed explanation of the search "hit".

Declaration
public 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
public 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
public IDictionary<string, List<string>> Fragments { get; }
Property Value
Type Description
IDictionary<string, List<string>>

The fragments.

View Source

Id

The document identifier.

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

Index

Gets the index used for the "hit".

Declaration
public 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
public dynamic Locations { get; }
Property Value
Type Description
dynamic

The locations.

View Source

Score

The relative score for this "hit".

Declaration
public double Score { get; }
Property Value
Type Description
double

Implements

ISearchQueryRow

See Also

ISearchQueryRow
  • View Source
In this article
Back to top Copyright © 2020 Couchbase, Inc. All rights reserved.