Json File Class
Contains methods for serializing and deserializing objects to and from JSON format.
Definition
Namespace: Extreme.Data.Json
Assembly: Extreme.Data.Json (in Extreme.Data.Json.dll) Version: 3.1.1
C#
Assembly: Extreme.Data.Json (in Extreme.Data.Json.dll) Version: 3.1.1
public static class JsonFile
- Inheritance
- Object → JsonFile
Methods
Append( | Creates a JSON stream from an existing JsonWriter. |
Append( | Opens a data stream in JSON format for writing. |
Create | Creates a data file in JSON format for writing. |
Open( | Opens a JSON stream from an existing JsonReader. |
Open( | Opens a data stream in JSON format for reading. |
Open( | Opens a data file in JSON format for reading. |
Read | Reads a complex matrix from a stream in JSON format. |
Read | Reads a complex matrix from a file in JSON format. |
Read | Reads a complex vector from a stream in JSON format. |
Read | Reads a complex vector from a file in JSON format. |
Read | Reads a data frame from a stream in JSON format. |
Read | Reads a data frame from a file in JSON format. |
Read | Reads a data frame from a stream in JSON format. |
Read | Reads a data frame from a file in JSON format. |
Read | Reads a matrix from a stream in JSON format. |
Read | Reads a matrix from a file in JSON format. |
Read | Reads a vector from a stream in JSON format. |
Read | Reads a vector from a file in JSON format. |
ToComplex | Reads a complex matrix from a string in JSON format. |
ToComplex | Reads a complex vector from a string in JSON format. |
ToData | Reads a data frame from a string in JSON format. |
ToData | Reads a data frame from a string in JSON format. |
ToJson<T>(Matrix<T>, JsonOptions) | Returns a string containing a matrix in JSON format. |
ToJson<T>(Matrix<Complex<T>>, JsonOptions) | Returns a string containing a complex matrix in JSON format. |
ToJson<T>(Vector<T>, JsonOptions) | Returns a string containing a vector in JSON format. |
ToJson<T>(Vector<Complex<T>>, JsonOptions) | Returns a string containing a complex vector in JSON format. |
ToJson<R, C>(DataFrame<R, C>, JsonOptions) | Returns a string containing the data frame in JSON format. |
ToMatrix<T> | Reads a matrix from a string in JSON format. |
ToVector<T> | Reads a vector from a string in JSON format. |
Write<T>(Stream, Matrix<T>, JsonOptions) | Writes a matrix to a stream in JSON format. |
Write<T>(Stream, Matrix<Complex<T>>, JsonOptions) | Writes a complex matrix to a stream in JSON format. |
Write<T>(Stream, Vector<T>, JsonOptions) | Writes a vector to a stream in JSON format. |
Write<T>(Stream, Vector<Complex<T>>, JsonOptions) | Writes a complex vector to a stream in JSON format. |
Write<T>(String, Matrix<T>, JsonOptions) | Writes a matrix to a file in JSON format. |
Write<T>(String, Matrix<Complex<T>>, JsonOptions) | Writes a complex matrix to a file in JSON format. |
Write<T>(String, Vector<T>, JsonOptions) | Writes a vector to a file in JSON format. |
Write<T>(String, Vector<Complex<T>>, JsonOptions) | Writes a complex vector to a file in JSON format. |
Write<R, C>(Stream, DataFrame<R, C>, JsonOptions) | Writes a data frame to a stream in JSON format. |
Write<R, C>(String, DataFrame<R, C>, JsonOptions) | Writes a data frame to a file in JSON format. |