LMatrixJsonConverter Class

JSON converter for triangular matrices.

Definition

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

Constructors

LMatrixJsonConverterInitializes a new instance of the LMatrixJsonConverter class

Properties

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

Methods

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

See Also