Interface IMutableFragment
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.dll
Syntax
public interface IMutableFragment : IMutableArrayFragment, IMutableDictionaryFragment
Properties
| Improve this Doc View SourceArray
Gets the contained value as a Mutable
Declaration
MutableArrayObject Array { get; set; }
Property Value
Type | Description |
---|---|
Mutable |
Blob
Gets the contained value as a Blob
Declaration
Blob Blob { get; set; }
Property Value
Type | Description |
---|---|
Blob |
Boolean
Gets the contained value as a Boolean
Declaration
bool Boolean { get; set; }
Property Value
Type | Description |
---|---|
System. |
Date
Gets the contained value as a System.
Declaration
DateTimeOffset Date { get; set; }
Property Value
Type | Description |
---|---|
System. |
Dictionary
Gets the contained value as a Mutable
Declaration
MutableDictionaryObject Dictionary { get; set; }
Property Value
Type | Description |
---|---|
Mutable |
Double
Gets the contained value as a Double
Declaration
double Double { get; set; }
Property Value
Type | Description |
---|---|
System. |
Float
Gets the contained value as a System.
Declaration
float Float { get; set; }
Property Value
Type | Description |
---|---|
System. |
Int
Gets the contained value as an System.
Declaration
int Int { get; set; }
Property Value
Type | Description |
---|---|
System. |
Long
Gets the contained value as an System.
Declaration
long Long { get; set; }
Property Value
Type | Description |
---|---|
System. |
String
Gets the contained value as a String
Declaration
string String { get; set; }
Property Value
Type | Description |
---|---|
System. |
Value
Gets or sets the value of the fragment as an untyped object
Declaration
object Value { get; set; }
Property Value
Type | Description |
---|---|
System. |
Exceptions
Type | Condition |
---|---|
System. |
Thrown when a value is attempted to be set on a key path that does not exist |