JsonObject

Overview

JSON Object node containing key; value pairs.

Location

  • Reference:
    • Elements.dll  .NET, .NET Core 6.0, .NET Standard 2.0
    • elements.jar  Cooper
    • Elements.fx  Island, ToffeeV2
    • libElements.fx  Toffee
  • Namespace: RemObjects.Elements.RTL
  • Platforms: .NET, .NET Core 6.0, .NET Standard 2.0, Cooper, Island, Toffee, ToffeeV2
  • Ancestry: JsonNode | JsonObject


 

constructor .NET, .NET Core 6.0, .NET Standard 2.0, Cooper, Island, ToffeeV2

 

constructor

 

JsonObject()

 

init()

 

JsonObject()

 

Sub New()

constructor init() Toffee

 

init(init )

Parameters:

  • :

constructor (Dictionary<String, JsonNode>)

 

constructor(aItems: Dictionary<String, JsonNode>)

 

JsonObject(Dictionary<String, JsonNode> aItems)

 

init(_ aItems: Dictionary<String, JsonNode>)

 

JsonObject(Dictionary<String, JsonNode> aItems)

 

Sub New(aItems As Dictionary<String, JsonNode>)

Parameters:

  • aItems:

Add

Add an entry to the object.

 

method Add(aKey: not nullable String; aValue: not nullable JsonNode)

 

void Add(String! aKey, JsonNode! aValue)

 

func Add(_ aKey: String, _ aValue: JsonNode)

 

void Add(String aKey, JsonNode aValue)

 

Sub Add(aKey As String, aValue As JsonNode)

Parameters:

  • aKey:
  • aValue:

BooleanValue  virtual    (declared in JsonNode)

Returns this value as boolean. Fails if the type mismatches.

 

property BooleanValue: Boolean read write;

 

Boolean BooleanValue { get; set; }

 

var BooleanValue: Boolean { get{} set{} }

 

Boolean BooleanValue { __get; __set; }

 

Property BooleanValue() As Boolean

Clear .NET, .NET Core 6.0, .NET Standard 2.0, Cooper, Island, ToffeeV2

Clear the object.

 

method Clear

 

void Clear()

 

func Clear()

 

void Clear()

 

Sub Clear()

Clear Clear()  virtual Toffee

 

func Clear(Clear )

Parameters:

  • :

ContainsExplicitJsonNullValueForKey

Check to see if this object contains an explicit null value for a key.

 

method ContainsExplicitJsonNullValueForKey(aKey: not nullable String): Boolean

 

Boolean ContainsExplicitJsonNullValueForKey(String! aKey)

 

func ContainsExplicitJsonNullValueForKey(_ aKey: String) -> Boolean

 

Boolean ContainsExplicitJsonNullValueForKey(String aKey)

 

Function ContainsExplicitJsonNullValueForKey(aKey As String) As Boolean

Parameters:

  • aKey:

ContainsKey

Check to see if this object contains a key.

 

method ContainsKey(aKey: not nullable String): Boolean

 

Boolean ContainsKey(String! aKey)

 

func ContainsKey(_ aKey: String) -> Boolean

 

Boolean ContainsKey(String aKey)

 

Function ContainsKey(aKey As String) As Boolean

Parameters:

  • aKey:

Count  override

Returns the nr of elements in this obejct.

 

property Count: Int32 read;

 

Int32 Count { get; }

 

var Count: Int32 { get{} }

 

Integer Count { __get; }

 

ReadOnly Property Count() As Int32

Create (nullable array of JsonNode): nullable JsonArray    (declared in JsonNode)

Create a new array node.

 

class method Create(aValue: nullable array of JsonNode): nullable JsonArray

 

static JsonArray? Create(JsonNode[]? aValue)

 

// Toffee
static func Create(_ aValue: JsonNode...) -> JsonArray
// ToffeeV2
static func Create(_ aValue: JsonNode...?) -> JsonArray?

 

static JsonArray Create(JsonNode[] aValue)

 

Shared Function Create(aValue As JsonNode()?) As JsonArray?

Parameters:

  • aValue:

Create (nullable Boolean): nullable JsonBooleanValue    (declared in JsonNode)

Create a new boolean node.

 

class method Create(aValue: nullable Boolean): nullable JsonBooleanValue

 

static JsonBooleanValue? Create(Boolean? aValue)

 

// Toffee
static func Create(_ aValue: Boolean!) -> JsonBooleanValue
// ToffeeV2
static func Create(_ aValue: Boolean!) -> JsonBooleanValue?

 

static JsonBooleanValue Create(Boolean aValue)

 

Shared Function Create(aValue As Boolean?) As JsonBooleanValue?

Parameters:

  • aValue:

Create (nullable Dictionary<String, JsonNode>): nullable JsonObject    (declared in JsonNode)

Create a new object node.

 

class method Create(aValue: nullable Dictionary<String, JsonNode>): nullable JsonObject

 

static JsonObject? Create(Dictionary<String, JsonNode>? aValue)

 

// Toffee
static func Create(_ aValue: Dictionary<String, JsonNode>) -> JsonObject
// ToffeeV2
static func Create(_ aValue: Dictionary<String, JsonNode>?) -> JsonObject?

 

static JsonObject Create(Dictionary<String, JsonNode> aValue)

 

Shared Function Create(aValue As Dictionary<String, JsonNode>?) As JsonObject?

Parameters:

  • aValue:

Create (nullable Double): nullable JsonFloatValue    (declared in JsonNode)

Create a new double node.

 

class method Create(aValue: nullable Double): nullable JsonFloatValue

 

static JsonFloatValue? Create(Double? aValue)

 

// Toffee
static func Create(_ aValue: Double!) -> JsonFloatValue
// ToffeeV2
static func Create(_ aValue: Double!) -> JsonFloatValue?

 

static JsonFloatValue Create(Double aValue)

 

Shared Function Create(aValue As Double?) As JsonFloatValue?

Parameters:

  • aValue:

Create (nullable Int64): nullable JsonIntegerValue    (declared in JsonNode)

Create a new int64 node.

 

class method Create(aValue: nullable Int64): nullable JsonIntegerValue

 

static JsonIntegerValue? Create(Int64? aValue)

 

// Toffee
static func Create(_ aValue: Int64!) -> JsonIntegerValue
// ToffeeV2
static func Create(_ aValue: Int64!) -> JsonIntegerValue?

 

static JsonIntegerValue Create(Long aValue)

 

Shared Function Create(aValue As Int64?) As JsonIntegerValue?

Parameters:

  • aValue:

Create (nullable List<JsonNode>): nullable JsonArray    (declared in JsonNode)

Create a new array node.

 

class method Create(aValue: nullable List<JsonNode>): nullable JsonArray

 

static JsonArray? Create(List<JsonNode>? aValue)

 

// Toffee
static func Create(_ aValue: List<JsonNode>) -> JsonArray
// ToffeeV2
static func Create(_ aValue: List<JsonNode>?) -> JsonArray?

 

static JsonArray Create(List<JsonNode> aValue)

 

Shared Function Create(aValue As List<JsonNode>?) As JsonArray?

Parameters:

  • aValue:

Create (nullable String): nullable JsonStringValue    (declared in JsonNode)

Create a new string node,.

 

class method Create(aValue: nullable String): nullable JsonStringValue

 

static JsonStringValue? Create(String? aValue)

 

// Toffee
static func Create(_ aValue: String) -> JsonStringValue
// ToffeeV2
static func Create(_ aValue: String?) -> JsonStringValue?

 

static JsonStringValue Create(String aValue)

 

Shared Function Create(aValue As String?) As JsonStringValue?

Parameters:

  • aValue:

description  override    (declared in JsonNode) ToffeeV2

Returns the string representation of this node.

 

func description() -> NSString

description description(): NSString  override    (declared in JsonNode) Toffee

 

func description(description ) -> NSString

Parameters:

  • :

FloatValue  virtual    (declared in JsonNode)

Returns the value of this node as float.

 

property FloatValue: Double read write;

 

Double FloatValue { get; set; }

 

var FloatValue: Double { get{} set{} }

 

Double FloatValue { __get; __set; }

 

Property FloatValue() As Double

GetSequence  virtual Toffee

 

func GetSequence(GetSequence ) -> INSFastEnumeration<tuple of (String, JsonNode)>

Parameters:

  • :

IntegerValue  virtual    (declared in JsonNode)

Returns the value of this node as integer.

 

property IntegerValue: Int64 read write;

 

Int64 IntegerValue { get; set; }

 

var IntegerValue: Int64 { get{} set{} }

 

Int64 IntegerValue { __get; __set; }

 

Property IntegerValue() As Int64

Item  override Island, Toffee

 

property Item[aKey: not nullable String]: Boolean read write;

 

Boolean Item[String! aKey] { get; set; }

 

subscript Item(_ aKey: String) -> Boolean { get{} set{} }

 

Property Item(aKey As String) As Boolean

Item  override Island, Toffee

 

property Item[aKey: not nullable String]: Double read write;

 

Double Item[String! aKey] { get; set; }

 

subscript Item(_ aKey: String) -> Double { get{} set{} }

 

Property Item(aKey As String) As Double

Item  override Island, Toffee

 

property Item[aKey: not nullable String]: Int32 read write;

 

Int32 Item[String! aKey] { get; set; }

 

subscript Item(_ aKey: String) -> Int32 { get{} set{} }

 

Property Item(aKey As String) As Int32

Item  override

Access an element by index.

 

property Item[aKey: not nullable String]: nullable JsonNode read write;

 

JsonNode? Item[String! aKey] { get; set; }

 

// .NET, .NET Core 6.0, .NET Standard 2.0, Island, ToffeeV2
subscript Item(_ aKey: String) -> JsonNode? { get{} set{} }
// Toffee
subscript Item(_ aKey: String) -> JsonNode { get{} set{} }

 

JsonNode Item[String aKey] { __get; __set; }

 

Property Item(aKey As String) As JsonNode?

Item  override Island, Toffee

 

property Item[aKey: not nullable String]: nullable String read write;

 

String? Item[String! aKey] { get; set; }

 

// Island
subscript Item(_ aKey: String) -> String? { get{} set{} }
// Toffee
subscript Item(_ aKey: String) -> String { get{} set{} }

 

Property Item(aKey As String) As String?

Item  virtual    (declared in JsonNode)

Access an element node by index.

 

property Item[Index: Int32]: not nullable JsonNode read write;

 

JsonNode! Item[Int32 Index] { get; set; }

 

subscript Item(_ Index: Int32) -> JsonNode { get{} set{} }

 

JsonNode Item[Integer Index] { __get; __set; }

 

Property Item(Index As Int32) As JsonNode

Item  override .NET, .NET Core 6.0, .NET Standard 2.0, Cooper, ToffeeV2

Access an element by index.

 

property Item[aKey: not nullable String]: Boolean write;

 

Boolean Item[String! aKey] { set; }

 

subscript Item(_ aKey: String) -> Boolean { set{} }

 

Boolean Item[String aKey] { __set; }

 

WriteOnly Property Item(aKey As String) As Boolean

Item  override .NET, .NET Core 6.0, .NET Standard 2.0, Cooper, ToffeeV2

Access an element by index.

 

property Item[aKey: not nullable String]: Double write;

 

Double Item[String! aKey] { set; }

 

subscript Item(_ aKey: String) -> Double { set{} }

 

Double Item[String aKey] { __set; }

 

WriteOnly Property Item(aKey As String) As Double

Item  override .NET, .NET Core 6.0, .NET Standard 2.0, Cooper, ToffeeV2

Access an element by index.

 

property Item[aKey: not nullable String]: Int32 write;

 

Int32 Item[String! aKey] { set; }

 

subscript Item(_ aKey: String) -> Int32 { set{} }

 

Integer Item[String aKey] { __set; }

 

WriteOnly Property Item(aKey As String) As Int32

Item  override .NET, .NET Core 6.0, .NET Standard 2.0, Cooper, ToffeeV2

Access an element by index.

 

property Item[aKey: not nullable String]: nullable String write;

 

String? Item[String! aKey] { set; }

 

subscript Item(_ aKey: String) -> String? { set{} }

 

String Item[String aKey] { __set; }

 

WriteOnly Property Item(aKey As String) As String?

iterator Cooper

 

method iterator: Iterator<Tuple2<String, JsonNode>>

 

Iterator<Tuple2<String, JsonNode>> iterator()

 

func iterator() -> Iterator<Tuple2<String, JsonNode>>

 

Iterator<Tuple2<String, JsonNode>> iterator()

 

Function iterator() As Iterator<Tuple2<String, JsonNode>>

Keys  override

Iterator for keys.

 

property Keys: not nullable IEnumerable<String> read;

 

IEnumerable<String>! Keys { get; }

 

// .NET, .NET Core 6.0, .NET Standard 2.0, Island, ToffeeV2
var Keys: IEnumerable<String> { get{} }
// Toffee
var Keys: INSFastEnumeration<String> { get{} }

 

Iterable<String> Keys { __get; }

 

ReadOnly Property Keys() As IEnumerable<String>

Load

Load this value as a string.

 

class method Load(JsonString: String): JsonObject

 

static JsonObject Load(String JsonString)

 

static func Load(_ JsonString: String) -> JsonObject

 

static JsonObject Load(String JsonString)

 

Shared Function Load(JsonString As String) As JsonObject

Parameters:

  • JsonString:

Properties

Properties sequences, contains both keys and values.

 

property Properties: IEnumerable<tuple of (String, JsonNode)> read;

 

IEnumerable<tuple of (String, JsonNode)> Properties { get; }

 

// .NET, .NET Core 6.0, .NET Standard 2.0, ToffeeV2
var Properties: IEnumerable<(String, JsonNode)> { get{} }
// Island
var Properties: IEnumerable<tuple of (String, JsonNode)> { get{} }
// Toffee
var Properties: INSFastEnumeration<tuple of (String, JsonNode)> { get{} }

 

Iterable<Tuple2<String, JsonNode>> Properties { __get; }

 

ReadOnly Property Properties() As IEnumerable<tuple of (String, JsonNode)>

Remove

Remove an item by name.

 

method Remove(aKey: not nullable String): Boolean

 

Boolean Remove(String! aKey)

 

func Remove(_ aKey: String) -> Boolean

 

Boolean Remove(String aKey)

 

Function Remove(aKey As String) As Boolean

Parameters:

  • aKey:

StringValue  virtual    (declared in JsonNode)

Returns the string representation of this node.

 

property StringValue: String read write;

 

String StringValue { get; set; }

 

var StringValue: String { get{} set{} }

 

String StringValue { __get; __set; }

 

Property StringValue() As String

ToJson  override

 

method ToJson(aFormat: JsonFormat): String

 

String ToJson(JsonFormat aFormat)

 

func ToJson(_ aFormat: JsonFormat) -> String

 

String ToJson(JsonFormat aFormat)

 

Function ToJson(aFormat As JsonFormat) As String

Parameters:

  • aFormat:

toString    (declared in JsonNode) Cooper

 

method toString: PlatformString

 

PlatformString toString()

 

func toString() -> PlatformString

 

PlatformString toString()

 

Function toString() As PlatformString

ToString  virtual    (declared in JsonNode) .NET, .NET Core 6.0, .NET Standard 2.0, Island, ToffeeV2

Returns the string representation of this node.

 

method ToString: PlatformString

 

PlatformString ToString()

 

func ToString() -> String

 

Function ToString() As PlatformString

ToString ToString(): String  virtual    (declared in JsonNode) Toffee

 

func ToString(ToString ) -> String

Parameters:

  • :

 

BooleanValue  virtual    (declared in JsonNode)

Returns this value as boolean. Fails if the type mismatches.

 

property BooleanValue: Boolean read write;

 

Boolean BooleanValue { get; set; }

 

var BooleanValue: Boolean { get{} set{} }

 

Boolean BooleanValue { __get; __set; }

 

Property BooleanValue() As Boolean

Count  override

Returns the nr of elements in this obejct.

 

property Count: Int32 read;

 

Int32 Count { get; }

 

var Count: Int32 { get{} }

 

Integer Count { __get; }

 

ReadOnly Property Count() As Int32

FloatValue  virtual    (declared in JsonNode)

Returns the value of this node as float.

 

property FloatValue: Double read write;

 

Double FloatValue { get; set; }

 

var FloatValue: Double { get{} set{} }

 

Double FloatValue { __get; __set; }

 

Property FloatValue() As Double

IntegerValue  virtual    (declared in JsonNode)

Returns the value of this node as integer.

 

property IntegerValue: Int64 read write;

 

Int64 IntegerValue { get; set; }

 

var IntegerValue: Int64 { get{} set{} }

 

Int64 IntegerValue { __get; __set; }

 

Property IntegerValue() As Int64

Item  override Island, Toffee

 

property Item[aKey: not nullable String]: Boolean read write;

 

Boolean Item[String! aKey] { get; set; }

 

subscript Item(_ aKey: String) -> Boolean { get{} set{} }

 

Property Item(aKey As String) As Boolean

Item  override Island, Toffee

 

property Item[aKey: not nullable String]: Double read write;

 

Double Item[String! aKey] { get; set; }

 

subscript Item(_ aKey: String) -> Double { get{} set{} }

 

Property Item(aKey As String) As Double

Item  override Island, Toffee

 

property Item[aKey: not nullable String]: Int32 read write;

 

Int32 Item[String! aKey] { get; set; }

 

subscript Item(_ aKey: String) -> Int32 { get{} set{} }

 

Property Item(aKey As String) As Int32

Item  override

Access an element by index.

 

property Item[aKey: not nullable String]: nullable JsonNode read write;

 

JsonNode? Item[String! aKey] { get; set; }

 

// .NET, .NET Core 6.0, .NET Standard 2.0, Island, ToffeeV2
subscript Item(_ aKey: String) -> JsonNode? { get{} set{} }
// Toffee
subscript Item(_ aKey: String) -> JsonNode { get{} set{} }

 

JsonNode Item[String aKey] { __get; __set; }

 

Property Item(aKey As String) As JsonNode?

Item  override Island, Toffee

 

property Item[aKey: not nullable String]: nullable String read write;

 

String? Item[String! aKey] { get; set; }

 

// Island
subscript Item(_ aKey: String) -> String? { get{} set{} }
// Toffee
subscript Item(_ aKey: String) -> String { get{} set{} }

 

Property Item(aKey As String) As String?

Item  virtual    (declared in JsonNode)

Access an element node by index.

 

property Item[Index: Int32]: not nullable JsonNode read write;

 

JsonNode! Item[Int32 Index] { get; set; }

 

subscript Item(_ Index: Int32) -> JsonNode { get{} set{} }

 

JsonNode Item[Integer Index] { __get; __set; }

 

Property Item(Index As Int32) As JsonNode

Item  override .NET, .NET Core 6.0, .NET Standard 2.0, Cooper, ToffeeV2

Access an element by index.

 

property Item[aKey: not nullable String]: Boolean write;

 

Boolean Item[String! aKey] { set; }

 

subscript Item(_ aKey: String) -> Boolean { set{} }

 

Boolean Item[String aKey] { __set; }

 

WriteOnly Property Item(aKey As String) As Boolean

Item  override .NET, .NET Core 6.0, .NET Standard 2.0, Cooper, ToffeeV2

Access an element by index.

 

property Item[aKey: not nullable String]: Double write;

 

Double Item[String! aKey] { set; }

 

subscript Item(_ aKey: String) -> Double { set{} }

 

Double Item[String aKey] { __set; }

 

WriteOnly Property Item(aKey As String) As Double

Item  override .NET, .NET Core 6.0, .NET Standard 2.0, Cooper, ToffeeV2

Access an element by index.

 

property Item[aKey: not nullable String]: Int32 write;

 

Int32 Item[String! aKey] { set; }

 

subscript Item(_ aKey: String) -> Int32 { set{} }

 

Integer Item[String aKey] { __set; }

 

WriteOnly Property Item(aKey As String) As Int32

Item  override .NET, .NET Core 6.0, .NET Standard 2.0, Cooper, ToffeeV2

Access an element by index.

 

property Item[aKey: not nullable String]: nullable String write;

 

String? Item[String! aKey] { set; }

 

subscript Item(_ aKey: String) -> String? { set{} }

 

String Item[String aKey] { __set; }

 

WriteOnly Property Item(aKey As String) As String?

Keys  override

Iterator for keys.

 

property Keys: not nullable IEnumerable<String> read;

 

IEnumerable<String>! Keys { get; }

 

// .NET, .NET Core 6.0, .NET Standard 2.0, Island, ToffeeV2
var Keys: IEnumerable<String> { get{} }
// Toffee
var Keys: INSFastEnumeration<String> { get{} }

 

Iterable<String> Keys { __get; }

 

ReadOnly Property Keys() As IEnumerable<String>

Properties

Properties sequences, contains both keys and values.

 

property Properties: IEnumerable<tuple of (String, JsonNode)> read;

 

IEnumerable<tuple of (String, JsonNode)> Properties { get; }

 

// .NET, .NET Core 6.0, .NET Standard 2.0, ToffeeV2
var Properties: IEnumerable<(String, JsonNode)> { get{} }
// Island
var Properties: IEnumerable<tuple of (String, JsonNode)> { get{} }
// Toffee
var Properties: INSFastEnumeration<tuple of (String, JsonNode)> { get{} }

 

Iterable<Tuple2<String, JsonNode>> Properties { __get; }

 

ReadOnly Property Properties() As IEnumerable<tuple of (String, JsonNode)>

StringValue  virtual    (declared in JsonNode)

Returns the string representation of this node.

 

property StringValue: String read write;

 

String StringValue { get; set; }

 

var StringValue: String { get{} set{} }

 

String StringValue { __get; __set; }

 

Property StringValue() As String

 

Create (nullable array of JsonNode): nullable JsonArray    (declared in JsonNode)

Create a new array node.

 

class method Create(aValue: nullable array of JsonNode): nullable JsonArray

 

static JsonArray? Create(JsonNode[]? aValue)

 

// Toffee
static func Create(_ aValue: JsonNode...) -> JsonArray
// ToffeeV2
static func Create(_ aValue: JsonNode...?) -> JsonArray?

 

static JsonArray Create(JsonNode[] aValue)

 

Shared Function Create(aValue As JsonNode()?) As JsonArray?

Parameters:

  • aValue:

Create (nullable Boolean): nullable JsonBooleanValue    (declared in JsonNode)

Create a new boolean node.

 

class method Create(aValue: nullable Boolean): nullable JsonBooleanValue

 

static JsonBooleanValue? Create(Boolean? aValue)

 

// Toffee
static func Create(_ aValue: Boolean!) -> JsonBooleanValue
// ToffeeV2
static func Create(_ aValue: Boolean!) -> JsonBooleanValue?

 

static JsonBooleanValue Create(Boolean aValue)

 

Shared Function Create(aValue As Boolean?) As JsonBooleanValue?

Parameters:

  • aValue:

Create (nullable Dictionary<String, JsonNode>): nullable JsonObject    (declared in JsonNode)

Create a new object node.

 

class method Create(aValue: nullable Dictionary<String, JsonNode>): nullable JsonObject

 

static JsonObject? Create(Dictionary<String, JsonNode>? aValue)

 

// Toffee
static func Create(_ aValue: Dictionary<String, JsonNode>) -> JsonObject
// ToffeeV2
static func Create(_ aValue: Dictionary<String, JsonNode>?) -> JsonObject?

 

static JsonObject Create(Dictionary<String, JsonNode> aValue)

 

Shared Function Create(aValue As Dictionary<String, JsonNode>?) As JsonObject?

Parameters:

  • aValue:

Create (nullable Double): nullable JsonFloatValue    (declared in JsonNode)

Create a new double node.

 

class method Create(aValue: nullable Double): nullable JsonFloatValue

 

static JsonFloatValue? Create(Double? aValue)

 

// Toffee
static func Create(_ aValue: Double!) -> JsonFloatValue
// ToffeeV2
static func Create(_ aValue: Double!) -> JsonFloatValue?

 

static JsonFloatValue Create(Double aValue)

 

Shared Function Create(aValue As Double?) As JsonFloatValue?

Parameters:

  • aValue:

Create (nullable Int64): nullable JsonIntegerValue    (declared in JsonNode)

Create a new int64 node.

 

class method Create(aValue: nullable Int64): nullable JsonIntegerValue

 

static JsonIntegerValue? Create(Int64? aValue)

 

// Toffee
static func Create(_ aValue: Int64!) -> JsonIntegerValue
// ToffeeV2
static func Create(_ aValue: Int64!) -> JsonIntegerValue?

 

static JsonIntegerValue Create(Long aValue)

 

Shared Function Create(aValue As Int64?) As JsonIntegerValue?

Parameters:

  • aValue:

Create (nullable List<JsonNode>): nullable JsonArray    (declared in JsonNode)

Create a new array node.

 

class method Create(aValue: nullable List<JsonNode>): nullable JsonArray

 

static JsonArray? Create(List<JsonNode>? aValue)

 

// Toffee
static func Create(_ aValue: List<JsonNode>) -> JsonArray
// ToffeeV2
static func Create(_ aValue: List<JsonNode>?) -> JsonArray?

 

static JsonArray Create(List<JsonNode> aValue)

 

Shared Function Create(aValue As List<JsonNode>?) As JsonArray?

Parameters:

  • aValue:

Create (nullable String): nullable JsonStringValue    (declared in JsonNode)

Create a new string node,.

 

class method Create(aValue: nullable String): nullable JsonStringValue

 

static JsonStringValue? Create(String? aValue)

 

// Toffee
static func Create(_ aValue: String) -> JsonStringValue
// ToffeeV2
static func Create(_ aValue: String?) -> JsonStringValue?

 

static JsonStringValue Create(String aValue)

 

Shared Function Create(aValue As String?) As JsonStringValue?

Parameters:

  • aValue:

Load

Load this value as a string.

 

class method Load(JsonString: String): JsonObject

 

static JsonObject Load(String JsonString)

 

static func Load(_ JsonString: String) -> JsonObject

 

static JsonObject Load(String JsonString)

 

Shared Function Load(JsonString As String) As JsonObject

Parameters:

  • JsonString:

 

constructor .NET, .NET Core 6.0, .NET Standard 2.0, Cooper, Island, ToffeeV2

 

constructor

 

JsonObject()

 

init()

 

JsonObject()

 

Sub New()

constructor init() Toffee

 

init(init )

Parameters:

  • :

constructor (Dictionary<String, JsonNode>)

 

constructor(aItems: Dictionary<String, JsonNode>)

 

JsonObject(Dictionary<String, JsonNode> aItems)

 

init(_ aItems: Dictionary<String, JsonNode>)

 

JsonObject(Dictionary<String, JsonNode> aItems)

 

Sub New(aItems As Dictionary<String, JsonNode>)

Parameters:

  • aItems:

Add

Add an entry to the object.

 

method Add(aKey: not nullable String; aValue: not nullable JsonNode)

 

void Add(String! aKey, JsonNode! aValue)

 

func Add(_ aKey: String, _ aValue: JsonNode)

 

void Add(String aKey, JsonNode aValue)

 

Sub Add(aKey As String, aValue As JsonNode)

Parameters:

  • aKey:
  • aValue:

Clear .NET, .NET Core 6.0, .NET Standard 2.0, Cooper, Island, ToffeeV2

Clear the object.

 

method Clear

 

void Clear()

 

func Clear()

 

void Clear()

 

Sub Clear()

Clear Clear()  virtual Toffee

 

func Clear(Clear )

Parameters:

  • :

ContainsExplicitJsonNullValueForKey

Check to see if this object contains an explicit null value for a key.

 

method ContainsExplicitJsonNullValueForKey(aKey: not nullable String): Boolean

 

Boolean ContainsExplicitJsonNullValueForKey(String! aKey)

 

func ContainsExplicitJsonNullValueForKey(_ aKey: String) -> Boolean

 

Boolean ContainsExplicitJsonNullValueForKey(String aKey)

 

Function ContainsExplicitJsonNullValueForKey(aKey As String) As Boolean

Parameters:

  • aKey:

ContainsKey

Check to see if this object contains a key.

 

method ContainsKey(aKey: not nullable String): Boolean

 

Boolean ContainsKey(String! aKey)

 

func ContainsKey(_ aKey: String) -> Boolean

 

Boolean ContainsKey(String aKey)

 

Function ContainsKey(aKey As String) As Boolean

Parameters:

  • aKey:

description  override    (declared in JsonNode) ToffeeV2

Returns the string representation of this node.

 

func description() -> NSString

description description(): NSString  override    (declared in JsonNode) Toffee

 

func description(description ) -> NSString

Parameters:

  • :

GetSequence  virtual Toffee

 

func GetSequence(GetSequence ) -> INSFastEnumeration<tuple of (String, JsonNode)>

Parameters:

  • :

iterator Cooper

 

method iterator: Iterator<Tuple2<String, JsonNode>>

 

Iterator<Tuple2<String, JsonNode>> iterator()

 

func iterator() -> Iterator<Tuple2<String, JsonNode>>

 

Iterator<Tuple2<String, JsonNode>> iterator()

 

Function iterator() As Iterator<Tuple2<String, JsonNode>>

Remove

Remove an item by name.

 

method Remove(aKey: not nullable String): Boolean

 

Boolean Remove(String! aKey)

 

func Remove(_ aKey: String) -> Boolean

 

Boolean Remove(String aKey)

 

Function Remove(aKey As String) As Boolean

Parameters:

  • aKey:

ToJson  override

 

method ToJson(aFormat: JsonFormat): String

 

String ToJson(JsonFormat aFormat)

 

func ToJson(_ aFormat: JsonFormat) -> String

 

String ToJson(JsonFormat aFormat)

 

Function ToJson(aFormat As JsonFormat) As String

Parameters:

  • aFormat:

toString    (declared in JsonNode) Cooper

 

method toString: PlatformString

 

PlatformString toString()

 

func toString() -> PlatformString

 

PlatformString toString()

 

Function toString() As PlatformString

ToString  virtual    (declared in JsonNode) .NET, .NET Core 6.0, .NET Standard 2.0, Island, ToffeeV2

Returns the string representation of this node.

 

method ToString: PlatformString

 

PlatformString ToString()

 

func ToString() -> String

 

Function ToString() As PlatformString

ToString ToString(): String  virtual    (declared in JsonNode) Toffee

 

func ToString(ToString ) -> String

Parameters:

  • :