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
Utf8JsonReaderJSON reader (UTF-8 format).
typeToConvert
TypeType to convert (unused).
options
JsonSerializerOptionsJSON serializer options (unused).
Returns
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
Utf8JsonWriterJSON writer (UTF-8 format).
value
CountriesForTaxPurposesEnum value(s) to convert.
options
JsonSerializerOptionsJSON serializer options (unused).