Couchbase .NET SDK | 3.7.2
Search Results for

    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

    | Edit this page View Source

    Explanation

    Detailed explanation of the search "hit".

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

    The explanation.

    | Edit this page 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.

    | Edit this page 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.

    | Edit this page View Source

    Id

    The document identifier.

    Declaration
    string Id { get; }
    Property Value
    Type Description
    string
    | Edit this page View Source

    Index

    Gets the index used for the "hit".

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

    The index.

    | Edit this page 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.

    | Edit this page View Source

    Score

    The relative score for this "hit".

    Declaration
    double Score { get; }
    Property Value
    Type Description
    double
    • Edit this page
    • View Source
    In this article
    Back to top © 2025 Couchbase, Inc.