C# Class Newtonsoft.Json.Linq.JRaw

Inheritance: Newtonsoft.Json.Linq.JValue
Datei anzeigen Open project: runegri/Applicable Class Usage Examples

Public Methods

Method Description
Create ( JsonReader reader ) : JRaw

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

JRaw ( JRaw other ) : System

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

JRaw ( object rawJson ) : System

Initializes a new instance of the JRaw class.

Private Methods

Method Description
CloneToken ( ) : JToken

Method Details

Create() public static method

Creates an instance of JRaw with the content of the reader's current token.
public static Create ( JsonReader reader ) : JRaw
reader Newtonsoft.Json.JsonReader The reader.
return JRaw

JRaw() public method

Initializes a new instance of the JRaw class from another JRaw object.
public JRaw ( JRaw other ) : System
other JRaw A object to copy from.
return System

JRaw() public method

Initializes a new instance of the JRaw class.
public JRaw ( object rawJson ) : System
rawJson object The raw json.
return System