Class
JsonObject

A dictionary containing JavaScript Object Notation (JSON) objects used in the Actions.InvokeScript function.

Definition

Namespace:ArtOfTest.WebAii.Javascript

Assembly:ArtOfTest.WebAii.dll

Syntax:

cs-api-definition
public class JsonObject : JsonCollection

Inheritance: objectJsonBaseTypeJsonCollectionJsonObject

Inherited Members JsonBaseType.InternalValueJsonBaseType.this[int]

Constructors

JsonObject(XmlReader)

Constructor that accepts an Xmlreader which contains the information needed to construct this JSON object.

Declaration

cs-api-definition
public JsonObject(XmlReader reader)

Parameters

reader

XmlReader

The XmlReader to read during construction.

Properties

this[string]

Gets / sets the JSON value associated with the specified key.

Declaration

cs-api-definition
public override JsonBaseType this[string key] { get; set; }

Parameters

key

string

The key of the value to get / set

Property Value

JsonBaseType

A JsonBaseType at the specified index

Overrides JsonBaseType.this[string]