Provides an interface to specify a path to a key in a document that you can then call a function on to get the value at the specified key as a specific type.
More...
|
DittoDocumentPath | this[string path] [get] |
| Used to specify a path to a key in the document that you can subscript further to access a nested key in the document. More...
|
|
DittoDocumentPath | this[int index] [get] |
| Used to specify an index in the array at the preceding key-path specified through the subscripting defined previously. You can subscript the return value further to access a further nested key in the document. More...
|
|
string | String [get] |
| Gets the value at the previously specified key in the document as a string if possible, otherwise the return value will be null . More...
|
|
string?? | StringValue [get] |
| Gets the value at the previously specified key in the document as a string if possible, otherwise the return value will be "" (an empty string). More...
|
|
int | Int32Value [get] |
| Gets the value at the previously specified key in the document as an Int32 if possible, otherwise the return value will be 0 . More...
|
|
long | Int64Value [get] |
| Gets the value at the previously specified key in the document as an Int64 if possible, otherwise the return value will be 0 . More...
|
|
uint | UInt32Value [get] |
| Gets the value at the previously specified key in the document as a UInt32 if possible, otherwise the return value will be 0 . More...
|
|
ulong | UInt64Value [get] |
| Gets the value at the previously specified key in the document as a UInt64 if possible, otherwise the return value will be 0 . More...
|
|
float | FloatValue [get] |
| Gets the value at the previously specified key in the document as a Float if possible, otherwise the return value will be 0.0 . More...
|
|
double | DoubleValue [get] |
| Gets the value at the previously specified key in the document as a UInt32 if possible, otherwise the return value will be 0. More...
|
|
bool | BooleanValue [get] |
| Gets the value at the previously specified key in the document as a bool if possible, otherwise the return value will be false . More...
|
|
List< object > | List [get] |
| Gets the value at the previously specified key in the document as a List<object> if possible, otherwise the return value will be null . More...
|
|
List< object >?? | ListValue [get] |
| Gets the value at the previously specified key in the document as a List<object> if possible, otherwise the return value will be [] (an empty list). More...
|
|
Dictionary< string, object > | Dictionary [get] |
| Gets the value at the previously specified key in the document as a Dictionary<string, object> if possible, otherwise the return value will be null . More...
|
|
Dictionary< string, object >?? | DictionaryValue [get] |
| Gets the value at the previously specified key in the document as a Dictionary<string, object> if possible, otherwise the return value will be {} (an empty dictionary). More...
|
|
DittoAttachmentToken | AttachmentToken [get] |
| Gets the value at the previously specified key in the document as a DittoAttachmentToken if possible, otherwise the return value will be null . More...
|
|
Provides an interface to specify a path to a key in a document that you can then call a function on to get the value at the specified key as a specific type.
You obtain a DittoDocumentPath
by subscripting a DittoDocument and you can then further subscript a DittoDocumentPath
to further specify the key of the document that you want to get the value of.