Interface IResultSet
An interface representing an enumerable collection of results from a given IQuery.
Inherited Members
System.Collections.Generic.IEnumerable<Couchbase.Lite.Query.Result>.GetEnumerator()
Namespace: Couchbase.Lite.Query
Assembly: Couchbase.Lite.dll
Syntax
public interface IResultSet : IEnumerable<Result>, IEnumerable
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 |
---|---|
System.Collections.Generic.List<Result> | A list of results from the result set |