Table of Contents

Class TaxYearEndingJsonConverter

Namespace
Payetools.Common.Serialization
Assembly
Payetools.Common.dll

JSON Converter for the TaxYearEnding enumeration.

public class TaxYearEndingJsonConverter : JsonConverter<TaxYearEnding>
Inheritance
TaxYearEndingJsonConverter
Inherited Members

Methods

Read(ref Utf8JsonReader, Type, JsonSerializerOptions)

Reads a TaxYearEnding enumerated value in string format and converts to the appropriate enum value.

public override TaxYearEnding Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options)

Parameters

reader Utf8JsonReader

JSON reader (UTF-8 format).

typeToConvert Type

Type to convert (unused).

options JsonSerializerOptions

JSON serializer options (unused).

Returns

TaxYearEnding

TaxYearEnding value.

Write(Utf8JsonWriter, TaxYearEnding, JsonSerializerOptions)

Writes a TaxYearEnding enum value, converted to its string equivalent, to the JSON stream.

public override void Write(Utf8JsonWriter writer, TaxYearEnding value, JsonSerializerOptions options)

Parameters

writer Utf8JsonWriter

JSON writer (UTF-8 format).

value TaxYearEnding

Enum value to convert.

options JsonSerializerOptions

JSON serializer options (unused).