Click or drag to resize
JsonDynamicAddArray Method (String)
Adds an empty array property and returns it's instance.

Namespace: Dextronet.Jsonie
Assembly: Dextronet.Jsonie (in Dextronet.Jsonie.dll) Version: 1.0.0.0
Syntax
public JsonDynamic AddArray(
	string key
)

Parameters

key
Type: SystemString
The key of the array to add.

Return Value

Type: JsonDynamic
The added array as dynamic.
Exceptions
ExceptionCondition
ArgumentNullExceptionkey is null.
ArgumentExceptionAn property with the same key already exists.
InvalidCastExceptionIf this object does not wrap JsonObject.
See Also