Click or drag to resize
JsonParserDecode Method (TextReader, JsonDecoderOptions)
Deserializes JSON encoded string into object representation.

Namespace: Dextronet.Jsonie
Assembly: Dextronet.Jsonie (in Dextronet.Jsonie.dll) Version: 1.0.0.0
Syntax
public static JsonValue Decode(
	TextReader reader,
	JsonDecoderOptions options = null
)

Parameters

reader
Type: System.IOTextReader
Reader of the json string.
options (Optional)
Type: Dextronet.JsonieJsonDecoderOptions
Decoder options.

Return Value

Type: JsonValue
Decoded JSON value.
Exceptions
ExceptionCondition
JsonFormatExceptionWhen json string is invalid.
See Also