Class PayFrequencyJsonConverter
- Namespace
- Payetools.Common.Serialization
- Assembly
- Payetools.Common.dll
JSON Converter for the PayFrequency enumeration.
public class PayFrequencyJsonConverter : JsonConverter<PayFrequency>
- Inheritance
-
PayFrequencyJsonConverter
- Inherited Members
Methods
Read(ref Utf8JsonReader, Type, JsonSerializerOptions)
Reads a PayFrequency enumerated value in string format and converts to the appropriate enum value.
public override PayFrequency 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
- PayFrequency
PayFrequency value.
Write(Utf8JsonWriter, PayFrequency, JsonSerializerOptions)
Writes a PayFrequency enum value, converted to its string equivalent, to the JSON stream.
public override void Write(Utf8JsonWriter writer, PayFrequency value, JsonSerializerOptions options)
Parameters
writer
Utf8JsonWriterJSON writer (UTF-8 format).
value
PayFrequencyEnum value to convert.
options
JsonSerializerOptionsJSON serializer options (unused).