Table of Contents

Class JsonProperty

Namespace
nanoFramework.Json
Assembly
nanoFramework.Json.dll

Represents single JSON key value pair.

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

Constructors

JsonProperty(string, JsonToken)

Initializes a new instance of the JsonProperty class.

public JsonProperty(string name, JsonToken value)

Parameters

name string

JSON property key.

value JsonToken

JSON property value.

Properties

Name

Gets key of JSON property.

public string Name { get; }

Property Value

string

Value

Gets value of Json property.

public JsonToken Value { get; }

Property Value

JsonToken