Click or drag to resize

IViewResultTKey, TValue Interface

Represents the results of a View query.

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

Type Parameters

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

The IViewResultTKey, TValue type exposes the following members.

Properties
  NameDescription
Public propertyMetaData
Gets the query meta data.
Public propertyRows
The results of the query as a IAsyncEnumerable.
Top
See Also