Click or drag to resize
JsonParserDecode Method (Stream, 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(
	Stream stream,
	JsonDecoderOptions options = null
)

Parameters

stream
Type: System.IOStream
Input stream containing 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