MatrixJsonConverter Class

JSON converter for rectangular matrices.

Definition

Namespace: Austra.Library
Assembly: Austra.Library (in Austra.Library.dll) Version: 2.5.0+d1268756e036101f601080f153b3997e72fc912d
C#
public class MatrixJsonConverter : JsonConverter<Matrix>
Inheritance
Object    JsonConverter    JsonConverterMatrix    MatrixJsonConverter

Constructors

MatrixJsonConverterInitializes a new instance of the MatrixJsonConverter class

Properties

HandleNullGets a value that indicates whether should be passed to the converter on serialization, and whether Null should be passed on deserialization.
(Inherited from JsonConverterMatrix)
TypeGets the type being converted by the current converter instance.
(Inherited from JsonConverterMatrix)

Methods

CanConvertDetermines whether the specified type can be converted.
(Inherited from JsonConverterMatrix)
EqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
GetHashCodeServes as the default hash function.
(Inherited from Object)
GetTypeGets the Type of the current instance.
(Inherited from Object)
ReadReads and convert JSON to a Matrix instance.
(Overrides JsonConverterTRead(Utf8JsonReader, Type, JsonSerializerOptions))
ReadAsPropertyNameReads a dictionary key from a JSON property name.
(Inherited from JsonConverterMatrix)
ToStringReturns a string that represents the current object.
(Inherited from Object)
WriteConverts a rectangular matrix to JSON.
(Overrides JsonConverterTWrite(Utf8JsonWriter, T, JsonSerializerOptions))
WriteAsPropertyNameWrites a dictionary key as a JSON property name.
(Inherited from JsonConverterMatrix)

See Also