Click or drag to resize

IMutableArray Interface

An interface representing a writeable collection of objects

Namespace:  Couchbase.Lite
Assembly:  Couchbase.Lite (in Couchbase.Lite.dll) Version: 2.0.0-b0713
Syntax
C#
public interface IMutableArray : IArray, 
	IArrayFragment, IEnumerable<Object>, IEnumerable, IMutableArrayFragment

The IMutableArray type exposes the following members.

Properties
  NameDescription
Public propertyCount
Gets the number of elements in this array
(Inherited from IArray.)
Public propertyItem
Gets the value of the given index, or lack thereof, wrapped inside of a IMutableFragment
Top
Methods
  NameDescription
Public methodAddArray
Adds an entry to this collection
Public methodAddBlob
Adds an entry to this collection
Public methodAddBoolean
Adds an entry to this collection
Public methodAddDate
Adds an entry to this collection
Public methodAddDictionary
Adds an entry to this collection
Public methodAddDouble
Adds an entry to this collection
Public methodAddFloat
Adds an entry to this collection
Public methodAddInt
Adds an entry to this collection
Public methodAddLong
Adds an entry to this collection
Public methodAddString
Adds an entry to this collection
Public methodAddValue
Adds an entry to this collection
Public methodGetArray
Gets the value at the given index as an array
Public methodGetBlob
Gets the value at the given index as a Blob
(Inherited from IArray.)
Public methodGetBoolean
Gets the value at the given index as a Boolean
(Inherited from IArray.)
Public methodGetDate
Gets the value at the given index as a DateTimeOffset
(Inherited from IArray.)
Public methodGetDictionary
Gets the value at the given index as a dictionary
Public methodGetDouble
Gets the value at the given index as a Double
(Inherited from IArray.)
Public methodGetEnumerator
Returns an enumerator that iterates through the collection.
(Inherited from IEnumerableObject.)
Public methodGetFloat
Gets the value at the given index as a Single
(Inherited from IArray.)
Public methodGetInt
Gets the value at the given index as an Int32
(Inherited from IArray.)
Public methodGetLong
Gets the value at the given index as an Int64
(Inherited from IArray.)
Public methodGetString
Gets the value at the given index as a String
(Inherited from IArray.)
Public methodGetValue
Gets the value at the given index as an untyped object
(Inherited from IArray.)
Public methodInsertArray
Inserts a given value at the given index
Public methodInsertBlob
Inserts a given value at the given index
Public methodInsertBoolean
Inserts a given value at the given index
Public methodInsertDate
Inserts a given value at the given index
Public methodInsertDictionary
Inserts a given value at the given index
Public methodInsertDouble
Inserts a given value at the given index
Public methodInsertFloat
Inserts a given value at the given index
Public methodInsertInt
Inserts a given value at the given index
Public methodInsertLong
Inserts a given value at the given index
Public methodInsertString
Inserts a given value at the given index
Public methodInsertValue
Inserts a given value at the given index
Public methodRemoveAt
Removes the item at the given index
Public methodSetArray
Overwrites the value at the given index with the given value
Public methodSetBlob
Overwrites the value at the given index with the given value
Public methodSetBoolean
Overwrites the value at the given index with the given value
Public methodSetData
Replaces the contents of this collection with the contents of the given one
Public methodSetDate
Overwrites the value at the given index with the given value
Public methodSetDictionary
Overwrites the value at the given index with the given value
Public methodSetDouble
Overwrites the value at the given index with the given value
Public methodSetFloat
Overwrites the value at the given index with the given value
Public methodSetInt
Overwrites the value at the given index with the given value
Public methodSetLong
Overwrites the value at the given index with the given value
Public methodSetString
Overwrites the value at the given index with the given value
Public methodSetValue
Overwrites the value at the given index with the given value
Public methodToList
Converts the contents of the array to a .NET list type
(Inherited from IArray.)
Top
See Also