ClassJsonObject
Class
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
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
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
The key of the value to get / set
Property Value
A JsonBaseType at the specified index
Overrides