Table of Contents

Class JRaw

Namespace
Newtonsoft.Json.Linq
Assembly
Newtonsoft.Json.dll

Represents a raw JSON string.

public class JRaw : JValue, IJEnumerable<JToken>, IEnumerable<JToken>, IEnumerable, IJsonLineInfo, ICloneable, IEquatable<JValue>, IFormattable, IComparable, IComparable<JValue>
Inheritance
JRaw
Implements
Inherited Members
Extension Methods

Constructors

JRaw(JRaw)

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

public JRaw(JRaw other)

Parameters

other JRaw

A JRaw object to copy from.

JRaw(object)

Initializes a new instance of the JRaw class.

public JRaw(object rawJson)

Parameters

rawJson object

The raw json.

Methods

Create(JsonReader)

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

public static JRaw Create(JsonReader reader)

Parameters

reader JsonReader

The reader.

Returns

JRaw

An instance of JRaw with the content of the reader's current token.