Click or drag to resize

IViewRowTKey, TValue Interface

A row returned by a view query.

Namespace:  Couchbase.Views
Assembly:  Couchbase.NetClient (in Couchbase.NetClient.dll) Version: 3.0.0-local-202004010202+047adc0837bfc29c0b8cce4322194a09afd8ea18
Syntax
C#
public interface IViewRow<out TKey, out TValue>

Type Parameters

TKey
Type of the key for each result row.
TValue
Type of the value for each result row.

The IViewRowTKey, TValue type exposes the following members.

Properties
  NameDescription
Public propertyId
The identifier for the row.
Public propertyKey
The key emitted by the View Map function.
Public propertyValue
The value emitted by the View Map function or if a Reduce view, the value of the Reduce.
Top
See Also