JsonDynamic Properties |
The JsonDynamic type exposes the following members.
Name | Description | |
---|---|---|
![]() | Count |
Gets the number of items in array or members in object of the dynamic type.
|
![]() | IsArray |
Tests if this is JSON array.
|
![]() | IsBoolean |
Tests if this is JSON boolean.
|
![]() | IsNull |
Tests if this is JSON null.
|
![]() | IsNumber |
Test if this is JSON number.
|
![]() | IsObject |
Tests if this is JSON object.
|
![]() | IsScalar |
Tests if this is JSON string or number or boolean or null.
|
![]() | IsString |
Tests if this is JSON string.
|
![]() | Item[Int32] |
Gets the item stored on given index.
|
![]() | Item[String] |
Gets the memeber indexed by given key.
|
![]() | Value |
Gets the wrapped value.
|