JsonStream Class

Represents a data stream in JSON format.

Definition

Namespace: Extreme.Data.Json
Assembly: Extreme.Data.Json (in Extreme.Data.Json.dll) Version: 3.1.1
C#
public class JsonStream : TextDataStream
Inheritance
Object  →  DataStream  →  TextDataStream  →  JsonStream

Properties

CanRead Gets whether the file can be read from.
(Overrides DataStream.CanRead)
CanWrite Gets whether the file can be written to.
(Overrides DataStream.CanWrite)

Methods

Dispose() Releases unmanaged resources.
(Inherited from DataStream)
Dispose(Boolean) Releases resources.
(Overrides DataStream.Dispose(Boolean))
EqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
FinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
Flush Causes any buffered data to be written to the underlying data store.
(Overrides DataStream.Flush())
GetHashCodeServes as the default hash function.
(Inherited from Object)
GetTypeGets the Type of the current instance.
(Inherited from Object)
MemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
ReadComplexMatrix<T> Reads a complex matrix from the stream.
(Overrides TextDataStream.ReadComplexMatrix<T>(Boolean))
ReadComplexVector<T> Reads a complex vector from the stream.
(Overrides TextDataStream.ReadComplexVector<T>(Boolean))
ReadDataFrame<R>(Int32, Boolean) Reads a data frame from the file.
(Inherited from DataStream)
ReadDataFrame<R>(String, Boolean) Reads a data frame from the file.
(Inherited from DataStream)
ReadDataFrame<R, C>() Reads the data frame at the current position in the file.
(Overrides DataStream.ReadDataFrame<R, C>())
ReadDataFrame<R, C>(C, Boolean) Reads a data frame from the file.
(Inherited from DataStream)
ReadMatrix<T> Reads the two-dimensional array at the current position in the file.
(Overrides DataStream.ReadMatrix<T>(Boolean))
ReadVector<T> Reads the one-dimensional array at the current position in the file.
(Overrides DataStream.ReadVector<T>(Boolean))
ToStringReturns a string that represents the current object.
(Inherited from Object)
Write<T>(Matrix<T>) Writes the two-dimensional array at the current position in the file.
(Inherited from DataStream)
Write<T>(Matrix<T>) Writes the two-dimensional array at the current position in the file.
(Overrides DataStream.Write<T>(Matrix<T>))
Write<T>(Matrix<Complex<T>>) Writes a complex matrix to the stream.
(Overrides TextDataStream.Write<T>(Matrix<Complex<T>>))
Write<T>(Matrix<Complex<T>>) Writes a complex matrix to the stream.
(Inherited from TextDataStream)
Write<T>(Vector<T>) Writes the one-dimensional array at the current position in the file.
(Inherited from DataStream)
Write<T>(Vector<T>) Writes the one-dimensional array at the current position in the file.
(Overrides DataStream.Write<T>(Vector<T>))
Write<T>(Vector<Complex<T>>) Writes a complex vector to the stream.
(Overrides TextDataStream.Write<T>(Vector<Complex<T>>))
Write<T>(Vector<Complex<T>>) Writes a complex vector to the stream.
(Inherited from TextDataStream)
Write<R, C>(DataFrame<R, C>) Writes the data frame at the current position in the file.
(Inherited from DataStream)
Write<R, C>(DataFrame<R, C>) Writes the data frame at the current position in the file.
(Overrides DataStream.Write<R, C>(DataFrame<R, C>))

See Also