Table of Contents

Class DateTimeConverterUsingDateTimeParse

Namespace
Radzen
Assembly
Radzen.Blazor.dll

Class DateTimeConverterUsingDateTimeParse. Implements the JsonConverter<T>

public class DateTimeConverterUsingDateTimeParse : JsonConverter<DateTime>
Inheritance
DateTimeConverterUsingDateTimeParse
Inherited Members

Constructors

DateTimeConverterUsingDateTimeParse()

public DateTimeConverterUsingDateTimeParse()
See Also

Methods

Read(ref Utf8JsonReader, Type, JsonSerializerOptions)

Reads the specified reader.

public override DateTime Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options)

Parameters

reader Utf8JsonReader

The reader.

typeToConvert Type

The type to convert.

options JsonSerializerOptions

The options.

Returns

DateTime

DateTime.

See Also

Write(Utf8JsonWriter, DateTime, JsonSerializerOptions)

Writes the specified writer.

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

Parameters

writer Utf8JsonWriter

The writer.

value DateTime

The value.

options JsonSerializerOptions

The options.

See Also

See Also