Interface IAnalyticsResult<T>
Results of an analytics query.
Inherited Members
Namespace: Couchbase.Analytics
Assembly: Couchbase.NetClient.dll
Syntax
public interface IAnalyticsResult<out T> : IDisposable, IAsyncEnumerable<T>, IServiceResult
Type Parameters
Name | Description |
---|---|
T | Type of each row in the result. |
Properties
| Edit this page View SourceMetaData
Gets the meta data associated with the analytics result.
Declaration
AnalyticsMetaData? MetaData { get; }
Property Value
Type | Description |
---|---|
Analytics |
Rows
The results of the query as a IAsync
Declaration
IAsyncEnumerable<out T> Rows { get; }
Property Value
Type | Description |
---|---|
IAsync |
Remarks
In most cases, the rows may be enumerated only once. If it's necessary to enumerate more than
once, use To