Couchbase .NET SDK | 3.7.2
Search Results for

    Show / Hide Table of Contents

    Interface IViewRow<TKey, TValue>

    A row returned by a view query.

    Namespace: Couchbase.Views
    Assembly: Couchbase.NetClient.dll
    Syntax
    public interface IViewRow<out TKey, out TValue>
    Type Parameters
    Name Description
    TKey

    Type of the key for each result row.

    TValue

    Type of the value for each result row.

    Properties

    | Edit this page View Source

    Id

    The identifier for the row.

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

    Key

    The key emitted by the View Map function.

    Declaration
    TKey Key { get; }
    Property Value
    Type Description
    TKey
    | Edit this page View Source

    Value

    The value emitted by the View Map function or if a Reduce view, the value of the Reduce.

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