Click or drag to resize
JsonDecoderDecode Method
Deserializes JSON encoded string into object representation.

Namespace: Dextronet.Jsonie
Assembly: Dextronet.Jsonie (in Dextronet.Jsonie.dll) Version: 1.0.0.0
Syntax
public JsonValue Decode(
	TextReader reader
)

Parameters

reader
Type: System.IOTextReader
Reader of the json string.

Return Value

Type: JsonValue
Decoded JSON value.
Exceptions
ExceptionCondition
JsonFormatExceptionWhen json string is invalid.
IOExceptionAn I/O error occurs.
ObjectDisposedExceptionThe reader is closed.
See Also