public JsonArray AsArray { get; }
Public ReadOnly Property AsArray As JsonArray
Get
public:
property JsonArray^ AsArray {
JsonArray^ get ();
}
member AsArray : JsonArray with get
To get array elements you can also read the numeric indexer without obtaining the value as a JsonArray.
To set/add/remove array elements in a JsonValue instance you need to use this property or the explicit cast to JsonArray.