Table of Contents

Class JsonValue

Namespace
nanoFramework.Json
Assembly
nanoFramework.Json.dll

Represents single object from JSON string.

public sealed class JsonValue : JsonToken
Inheritance
JsonValue
Inherited Members
Extension Methods

Constructors

JsonValue(object, bool)

Initializes a new instance of the JsonValue class.

public JsonValue(object value, bool isDateTime = false)

Parameters

value object

Value of current JSON object.

isDateTime bool

Is the type of value DateTime.

Properties

Value

Gets or sets object value.

public object Value { get; }

Property Value

object