Show / Hide Table of Contents

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.

Inherited Members
IMutableArrayFragment.Item[Int32]
IMutableDictionaryFragment.Item[String]
Namespace: Couchbase.Lite
Assembly: Couchbase.Lite.dll
Syntax
public interface IMutableFragment : IMutableArrayFragment, IMutableDictionaryFragment

Properties

| Improve this Doc View Source

Array

Gets the contained value as a MutableArrayObject

Declaration
MutableArrayObject Array { get; set; }
Property Value
Type Description
MutableArrayObject
| Improve this Doc View Source

Blob

Gets the contained value as a Blob

Declaration
Blob Blob { get; set; }
Property Value
Type Description
Blob
| Improve this Doc View Source

Boolean

Gets the contained value as a Boolean

Declaration
bool Boolean { get; set; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

Date

Gets the contained value as a

Declaration
DateTimeOffset Date { get; set; }
Property Value
Type Description
DateTimeOffset
| Improve this Doc View Source

Dictionary

Gets the contained value as a MutableDictionaryObject

Declaration
MutableDictionaryObject Dictionary { get; set; }
Property Value
Type Description
MutableDictionaryObject
| Improve this Doc View Source

Double

Gets the contained value as a Double

Declaration
double Double { get; set; }
Property Value
Type Description
System.Double
| Improve this Doc View Source

Float

Gets the contained value as a

Declaration
float Float { get; set; }
Property Value
Type Description
System.Single
| Improve this Doc View Source

Int

Gets the contained value as an

Declaration
int Int { get; set; }
Property Value
Type Description
System.Int32
| Improve this Doc View Source

Long

Gets the contained value as an

Declaration
long Long { get; set; }
Property Value
Type Description
System.Int64
| Improve this Doc View Source

String

Gets the contained value as a String

Declaration
string String { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

Value

Gets or sets the value of the fragment as an untyped object

Declaration
object Value { get; set; }
Property Value
Type Description
System.Object
  • Improve this Doc
  • View Source
Back to top Generated by DocFX