Table of Contents

Class PublicKeySignatureConverter

Namespace
Aptos
Assembly
Aptos.dll
public class PublicKeySignatureConverter : JsonConverter<PublicKeySignature>
Inheritance
JsonConverter
JsonConverter<PublicKeySignature>
PublicKeySignatureConverter
Inherited Members
JsonConverter.CanRead
JsonConverter.CanWrite

Methods

ReadJson(JsonReader, Type, PublicKeySignature?, bool, JsonSerializer)

Reads the JSON representation of the object.

public override PublicKeySignature? ReadJson(JsonReader reader, Type objectType, PublicKeySignature? existingValue, bool hasExistingValue, JsonSerializer serializer)

Parameters

reader JsonReader

The Newtonsoft.Json.JsonReader to read from.

objectType Type

Type of the object.

existingValue PublicKeySignature

The existing value of object being read. If there is no existing value then null will be used.

hasExistingValue bool

The existing value has a value.

serializer JsonSerializer

The calling serializer.

Returns

PublicKeySignature

The object value.

WriteJson(JsonWriter, PublicKeySignature?, JsonSerializer)

Writes the JSON representation of the object.

public override void WriteJson(JsonWriter writer, PublicKeySignature? value, JsonSerializer serializer)

Parameters

writer JsonWriter

The Newtonsoft.Json.JsonWriter to write to.

value PublicKeySignature

The value.

serializer JsonSerializer

The calling serializer.