Table of Contents

Class NiCategoryJsonTypeConverter

Namespace
Payetools.ReferenceData.Serialization
Assembly
Payetools.ReferenceData.dll

JSON Converter for the NiCategory enumeration.

public class NiCategoryJsonTypeConverter : JsonConverter<NiCategory>
Inheritance
NiCategoryJsonTypeConverter
Inherited Members

Methods

Read(ref Utf8JsonReader, Type, JsonSerializerOptions)

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

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

NiCategory

PayFrequency value.

Write(Utf8JsonWriter, NiCategory, JsonSerializerOptions)

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

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

Parameters

writer Utf8JsonWriter

JSON writer (UTF-8 format).

value NiCategory

Enum value to convert.

options JsonSerializerOptions

JSON serializer options (unused).