LMatrixJsonConverter Class

JSON converter for triangular matrices.

Definition

Namespace: Austra.Library
Assembly: Austra.Library (in Austra.Library.dll) Version: 2.5.0+d1268756e036101f601080f153b3997e72fc912d
C#
public class LMatrixJsonConverter : JsonConverter<LMatrix>
Inheritance
Object    JsonConverter    JsonConverterLMatrix    LMatrixJsonConverter

Constructors

LMatrixJsonConverterInitializes a new instance of the LMatrixJsonConverter 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 JsonConverterLMatrix)
TypeGets the type being converted by the current converter instance.
(Inherited from JsonConverterLMatrix)

Methods

CanConvertDetermines whether the specified type can be converted.
(Inherited from JsonConverterLMatrix)
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 LMatrix instance.
(Overrides JsonConverterTRead(Utf8JsonReader, Type, JsonSerializerOptions))
ReadAsPropertyNameReads a dictionary key from a JSON property name.
(Inherited from JsonConverterLMatrix)
ToStringReturns a string that represents the current object.
(Inherited from Object)
WriteConverts a lower-triangular matrix to JSON.
(Overrides JsonConverterTWrite(Utf8JsonWriter, T, JsonSerializerOptions))
WriteAsPropertyNameWrites a dictionary key as a JSON property name.
(Inherited from JsonConverterLMatrix)

See Also