C# Class numl.Serialization.JsonReader

Inheritance: IDisposable
Afficher le fichier Open project: sethjuarez/numl Class Usage Examples

Méthodes publiques

Méthode Description
Dispose ( ) : void
IsNull ( ) : bool
JsonReader ( TextReader reader ) : System
Read ( ) : object

Reads from the current JSON serialized stream.

ReadArrayProperty ( ) : JsonArray

Reads an array property from the JSON serialized stream.

ReadMatrix ( ) : Matrix

Reads a Matrix from the underlying Json stream.

ReadMatrixProperty ( ) : JsonProperty

Reads the matrix property.

ReadProperty ( ) : JsonProperty

Reads a property from the JSON serialized stream.

ReadVector ( ) : Vector

Reads a Vector from the underlying Json stream.

ReadVectorProperty ( ) : JsonProperty

Reads the vector property from the underlying Json stream..

Private Methods

Méthode Description
EatWhitespace ( ) : void
PeekChar ( ) : int
PeekToken ( int token ) : void
ReadArray ( ) : object[]
ReadChar ( ) : int
ReadEndObject ( ) : void
ReadLiteral ( ) : object
ReadNumber ( ) : double
ReadObject ( ) : object
ReadStartObject ( ) : void
ReadString ( ) : string
ReadToken ( int token ) : void

Method Details

Dispose() public méthode

public Dispose ( ) : void
Résultat void

IsNull() public méthode

public IsNull ( ) : bool
Résultat bool

JsonReader() public méthode

public JsonReader ( TextReader reader ) : System
reader TextReader
Résultat System

Read() public méthode

Reads from the current JSON serialized stream.
public Read ( ) : object
Résultat object

ReadArrayProperty() public méthode

Reads an array property from the JSON serialized stream.
public ReadArrayProperty ( ) : JsonArray
Résultat JsonArray

ReadMatrix() public méthode

Reads a Matrix from the underlying Json stream.
public ReadMatrix ( ) : Matrix
Résultat Matrix

ReadMatrixProperty() public méthode

Reads the matrix property.
public ReadMatrixProperty ( ) : JsonProperty
Résultat JsonProperty

ReadProperty() public méthode

Reads a property from the JSON serialized stream.
public ReadProperty ( ) : JsonProperty
Résultat JsonProperty

ReadVector() public méthode

Reads a Vector from the underlying Json stream.
public ReadVector ( ) : Vector
Résultat numl.Math.LinearAlgebra.Vector

ReadVectorProperty() public méthode

Reads the vector property from the underlying Json stream..
public ReadVectorProperty ( ) : JsonProperty
Résultat JsonProperty