JRaw Class

Namespace: Stimulsoft.Base.Json.Linq

Represents a raw JSON string.

Inheritance

Inherits from: JValue

Constructors

Constructor Description
JRaw(JRaw other) Initializes a new instance of the JRaw class from another JRaw object.
JRaw(object rawJson) Initializes a new instance of the JRaw class.

JRaw(other: JRaw)

Initializes a new instance of the JRaw class from another JRaw object.

Parameters

  • other (JRaw) — A JRaw object to copy from.

JRaw(rawJson: object)

Initializes a new instance of the JRaw class.

Parameters

  • rawJson (object) — The raw json.

Methods

Method Returns Description
Create static JRaw Creates an instance of JRaw with the content of the reader’s current token.

Method Details

Create static

Create(reader: JsonReader): JRaw

Creates an instance of JRaw with the content of the reader’s current token.

Parameters

Returns JRaw — An instance of JRaw with the content of the reader’s current token.