Table of Contents

Class CountriesForTaxPurposesJsonConverter

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

JSON Converter for the CountriesForTaxPurposes enumeration. When encoded in a JSON payload, values are represented using space separated ISO-3166 format, e.g. "GB-ENG GB-NIR".

public class CountriesForTaxPurposesJsonConverter : JsonConverter<CountriesForTaxPurposes>
Inheritance
CountriesForTaxPurposesJsonConverter
Inherited Members

Methods

Read(ref Utf8JsonReader, Type, JsonSerializerOptions)

Reads a CountriesForTaxPurposes value in ISO-3166 format and converts to the appropriate enum value(s).

public override CountriesForTaxPurposes 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

CountriesForTaxPurposes

CountriesForTaxPurposes value.

Write(Utf8JsonWriter, CountriesForTaxPurposes, JsonSerializerOptions)

Writes a CountriesForTaxPurposes enum value or values (as [Flags attribute is present), converted to the appropriate ISO-3166 space separated string format, e.g., "GB-ENG GB-WLS GB-NIR".

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

Parameters

writer Utf8JsonWriter

JSON writer (UTF-8 format).

value CountriesForTaxPurposes

Enum value(s) to convert.

options JsonSerializerOptions

JSON serializer options (unused).