Interface IResultSet
An interface representing an enumerable collection of results from a given IQuery.
Namespace: Couchbase.Lite.Query
Assembly: Couchbase.Lite.dll
Syntax
public interface IResultSet : IEnumerable<Result>
Methods
| Improve this Doc View SourceAllResults()
Cross platform API entry to get all results in a list. Same
as ToList()
Declaration
List<Result> AllResults()
Returns
Type | Description |
---|---|
List<Result> | A list of results from the result set |