IResult Interface |
Namespace: Couchbase.Lite.Query
public interface IResult : IReadOnlyArray, IReadOnlyArrayFragment, IEnumerable<Object>, IEnumerable, IReadOnlyDictionary, IReadOnlyDictionaryFragment, IEnumerable<KeyValuePair<string, Object>>
The IResult type exposes the following members.
| Name | Description | |
|---|---|---|
| Count |
Gets the number of elements in the collection
(Inherited from IReadOnlyArray.) | |
| ItemInt32 |
Gets the value of the given index, or lack thereof,
wrapped inside of a ReadOnlyFragment (Inherited from IReadOnlyArrayFragment.) | |
| ItemString |
Gets the value of the given key, or lack thereof,
wrapped inside of a ReadOnlyFragment (Inherited from IReadOnlyDictionaryFragment.) | |
| Keys |
Gets all the keys held by this dictionary
(Inherited from IReadOnlyDictionary.) |
| Name | Description | |
|---|---|---|
| Contains |
Checks if a given key is present in the dictionary
(Inherited from IReadOnlyDictionary.) | |
| GetArray(Int32) |
Gets the value at the given index as a read only array
(Inherited from IReadOnlyArray.) | |
| GetArray(String) |
Gets the value of a given key as an IReadOnlyArray (Inherited from IReadOnlyDictionary.) | |
| GetBlob(Int32) |
Gets the value at the given index as a Blob (Inherited from IReadOnlyArray.) | |
| GetBlob(String) |
Gets the value of a given key as a Blob (Inherited from IReadOnlyDictionary.) | |
| GetBoolean(Int32) |
Gets the value at the given index as a Boolean (Inherited from IReadOnlyArray.) | |
| GetBoolean(String) |
Gets the value of a given key as a Boolean (Inherited from IReadOnlyDictionary.) | |
| GetDate(Int32) |
Gets the value at the given index as a DateTimeOffset (Inherited from IReadOnlyArray.) | |
| GetDate(String) |
Gets the value of a given key as a DateTimeOffset (Inherited from IReadOnlyDictionary.) | |
| GetDictionary(Int32) |
Gets the value at the given index as an IReadOnlyDictionary (Inherited from IReadOnlyArray.) | |
| GetDictionary(String) |
Gets the value of a given key as a readonly dictionary
(Inherited from IReadOnlyDictionary.) | |
| GetDouble(Int32) |
Gets the value at the given index as a Double (Inherited from IReadOnlyArray.) | |
| GetDouble(String) |
Gets the value of a given key as a Double (Inherited from IReadOnlyDictionary.) | |
| GetEnumerator | Returns an enumerator that iterates through the collection. (Inherited from IEnumerableObject.) | |
| GetFloat(Int32) |
Gets the value at the given index as a Single (Inherited from IReadOnlyArray.) | |
| GetFloat(String) |
Gets the value of a given key as a Single (Inherited from IReadOnlyDictionary.) | |
| GetInt(Int32) |
Gets the value at the given index as an Int32 (Inherited from IReadOnlyArray.) | |
| GetInt(String) |
Gets the value of a given key as an Int32 (Inherited from IReadOnlyDictionary.) | |
| GetLong(Int32) |
Gets the value at the given index as an Int64 (Inherited from IReadOnlyArray.) | |
| GetLong(String) |
Gets the value of a given key as an Int64 (Inherited from IReadOnlyDictionary.) | |
| GetObject(Int32) |
Gets the value at the given index as an untyped object
(Inherited from IReadOnlyArray.) | |
| GetObject(String) |
Gets the value of a given key as an untyped object
(Inherited from IReadOnlyDictionary.) | |
| GetString(Int32) |
Gets the value at the given index as a String (Inherited from IReadOnlyArray.) | |
| GetString(String) |
Gets the value of a given key as a String (Inherited from IReadOnlyDictionary.) | |
| ToDictionary |
Converts this object to a standard .NET string to object
IDictionaryTKey, TValue (Inherited from IReadOnlyDictionary.) | |
| ToList |
Converts this object to a standard .NET collection
(Inherited from IReadOnlyArray.) |