JsonNodeItem(Int32) Property
Alternative to using the
Children collection when the node is of type
Array, that gets
a child node keyed on its array index.
The existence of the
Children property plus this property and its keyed equivalent
is a very deliberate contravention of Occam's Razor in order to
simplify the calling code in most circumstances. This property and the
ItemString property can be
used in chains to effectively support the bracketed notation form of JSONPath for navigating the parse tree.
This property only supports the get operation. If you wish to add a new child node to the parent object, you must
do so via the
Children collection.
Online page.
| InvalidOperationException | Thrown when this node is not of type Array. |
| IndexOutOfRangeException | Thrown when index value is invalid. |