IResult Interface |
Namespace: Couchbase.Lite.Query
public interface IResult : IArray, IArrayFragment, IReadOnlyCollection<Object>, IEnumerable<Object>, IEnumerable, IDictionaryObject, IDictionaryFragment, IReadOnlyCollection<KeyValuePair<string, Object>>, IEnumerable<KeyValuePair<string, Object>>
The IResult type exposes the following members.
| Name | Description | |
|---|---|---|
| Count | Gets the number of elements in the collection. (Inherited from IReadOnlyCollectionObject.) | |
| ItemInt32 |
Gets the value of the given index, or lack thereof,
wrapped inside of a IFragment (Inherited from IArrayFragment.) | |
| ItemString |
Gets the value of the given key, or lack thereof,
wrapped inside of a IFragment (Inherited from IDictionaryFragment.) | |
| Keys |
Gets all the keys held by this dictionary
(Inherited from IDictionaryObject.) |
| Name | Description | |
|---|---|---|
| Contains |
Checks if a given key is present in the dictionary
(Inherited from IDictionaryObject.) | |
| GetArray(Int32) |
Gets the value at the given index as a read only array
(Inherited from IArray.) | |
| GetArray(String) |
Gets the value of a given key as an IArray (Inherited from IDictionaryObject.) | |
| GetBlob(Int32) |
Gets the value at the given index as a Blob (Inherited from IArray.) | |
| GetBlob(String) |
Gets the value of a given key as a Blob (Inherited from IDictionaryObject.) | |
| GetBoolean(Int32) |
Gets the value at the given index as a Boolean (Inherited from IArray.) | |
| GetBoolean(String) |
Gets the value of a given key as a Boolean (Inherited from IDictionaryObject.) | |
| GetDate(Int32) |
Gets the value at the given index as a DateTimeOffset (Inherited from IArray.) | |
| GetDate(String) |
Gets the value of a given key as a DateTimeOffset (Inherited from IDictionaryObject.) | |
| GetDictionary(Int32) |
Gets the value at the given index as a DictionaryObject (Inherited from IArray.) | |
| GetDictionary(String) |
Gets the value of a given key as a readonly dictionary
(Inherited from IDictionaryObject.) | |
| GetDouble(Int32) |
Gets the value at the given index as a Double (Inherited from IArray.) | |
| GetDouble(String) |
Gets the value of a given key as a Double (Inherited from IDictionaryObject.) | |
| 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 IArray.) | |
| GetFloat(String) |
Gets the value of a given key as a Single (Inherited from IDictionaryObject.) | |
| GetInt(Int32) |
Gets the value at the given index as an Int32 (Inherited from IArray.) | |
| GetInt(String) |
Gets the value of a given key as an Int32 (Inherited from IDictionaryObject.) | |
| GetLong(Int32) |
Gets the value at the given index as an Int64 (Inherited from IArray.) | |
| GetLong(String) |
Gets the value of a given key as an Int64 (Inherited from IDictionaryObject.) | |
| GetString(Int32) |
Gets the value at the given index as a String (Inherited from IArray.) | |
| GetString(String) |
Gets the value of a given key as a String (Inherited from IDictionaryObject.) | |
| GetValue(Int32) |
Gets the value at the given index as an untyped object
(Inherited from IArray.) | |
| GetValue(String) |
Gets the value of a given key as an untyped object
(Inherited from IDictionaryObject.) | |
| ToDictionary |
Converts this object to a standard .NET string to object
DictionaryTKey, TValue (Inherited from IDictionaryObject.) | |
| ToList |
Converts this object to a standard .NET collection
(Inherited from IArray.) |