Show / Hide Table of Contents

Class TransactionTypeConverter

Converts TransactionType enum to/from JSON strings. Unknown enum values are deserialized as Unknown instead of throwing, preserving the previous behavior where serializer.Populate() tolerated unrecognized enum values.

Inheritance
object
JsonConverter
JsonConverter<TransactionType>
TransactionTypeConverter
Namespace: Xrpl.Client.Json.Converters
Assembly: Xrpl.dll
Syntax
public class TransactionTypeConverter : JsonConverter<TransactionType>

Methods

| Edit this page View Source

Read(ref Utf8JsonReader, Type, JsonSerializerOptions)

Reads and converts the JSON to type TransactionType.

Declaration
public override TransactionType Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options)
Parameters
Type Name Description
Utf8JsonReader reader

The reader.

Type typeToConvert

The type to convert.

JsonSerializerOptions options

An object that specifies serialization options to use.

Returns
Type Description
TransactionType

The converted value.

Overrides
System.Text.Json.Serialization.JsonConverter<Xrpl.Models.TransactionType>.Read(ref System.Text.Json.Utf8JsonReader, System.Type, System.Text.Json.JsonSerializerOptions)
| Edit this page View Source

Write(Utf8JsonWriter, TransactionType, JsonSerializerOptions)

Writes a specified value as JSON.

Declaration
public override void Write(Utf8JsonWriter writer, TransactionType value, JsonSerializerOptions options)
Parameters
Type Name Description
Utf8JsonWriter writer

The writer to write to.

TransactionType value

The value to convert to JSON.

JsonSerializerOptions options

An object that specifies serialization options to use.

Overrides
JsonConverter<TransactionType>.Write(Utf8JsonWriter, TransactionType, JsonSerializerOptions)
  • Edit this page
  • View Source
In this article
Back to top Generated by DocFX