Click or drag to resize

IMutableFragment Interface

An interface describing a mutable entry in a key-value path on an object. Note that if the key-value path does not exist, then setting the value will throw an exception.

Namespace:  Couchbase.Lite
Assembly:  Couchbase.Lite (in Couchbase.Lite.dll) Version: 2.0.0-b0713
Syntax
C#
public interface IMutableFragment : IMutableArrayFragment, 
	IMutableDictionaryFragment

The IMutableFragment type exposes the following members.

Properties
  NameDescription
Public propertyArray
Gets the contained value as a MutableArrayObject
Public propertyBlob
Gets the contained value as a Blob
Public propertyBoolean
Gets the contained value as a Boolean
Public propertyDate
Gets the contained value as a DateTimeOffset
Public propertyDictionary
Gets the contained value as a MutableDictionaryObject
Public propertyDouble
Gets the contained value as a Double
Public propertyFloat
Gets the contained value as a Single
Public propertyInt
Gets the contained value as an Int32
Public propertyItemInt32
Gets the value of an arbitrary index
(Inherited from IMutableArrayFragment.)
Public propertyItemString
Gets the value of an arbitrary String key
(Inherited from IMutableDictionaryFragment.)
Public propertyLong
Gets the contained value as an Int64
Public propertyString
Gets the contained value as a String
Public propertyValue
Gets or sets the value of the fragment as an untyped object
Top
See Also