Table of Contents

Class DateOnlyJsonConverter

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

JSON Converter for instances of DateOnly types.

public class DateOnlyJsonConverter : JsonConverter<DateOnly>
Inheritance
DateOnlyJsonConverter
Inherited Members

Methods

Read(ref Utf8JsonReader, Type, JsonSerializerOptions)

Reads an ISO 8601 format date in string format and converts to the appropriate DateOnly value.

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

DateOnly

DateOnly value.

Write(Utf8JsonWriter, DateOnly, JsonSerializerOptions)

Writes a DateOnly value to the JSON stream in ISO 8601 format date in string format.

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

Parameters

writer Utf8JsonWriter

JSON writer (UTF-8 format).

value DateOnly

DateOnly value to convert.

options JsonSerializerOptions

JSON serializer options (unused).