Home TypeKeywordJsonConverter Class
TypeKeywordJsonConverter Class
Cancel

TypeKeywordJsonConverter Class

Namespace: Json.Schema

Inheritance: TypeKeywordJsonConverter 🡒 WeaklyTypedJsonConverter<TypeKeyword> 🡒 JsonConverter<TypeKeyword> 🡒 JsonConverter 🡒 object

Implemented interfaces:

  • IWeaklyTypedJsonConverter

JSON converter for Json.Schema.TypeKeyword.

Properties

NameTypeSummary
HandleNullbool 
TypeType 

Methods

Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options)

Reads and converts the JSON to type Json.Schema.TypeKeyword.

Declaration

1
public override TypeKeyword Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options)
ParameterTypeDescription
readerref Utf8JsonReaderThe reader.
typeToConvertTypeThe type to convert.
optionsJsonSerializerOptionsAn object that specifies serialization options to use.

Returns

The converted value.

Write(Utf8JsonWriter writer, TypeKeyword value, JsonSerializerOptions options)

Writes a specified value as JSON.

Declaration

1
public override void Write(Utf8JsonWriter writer, TypeKeyword value, JsonSerializerOptions options)
ParameterTypeDescription
writerUtf8JsonWriterThe writer to write to.
valueTypeKeywordThe value to convert to JSON.
optionsJsonSerializerOptionsAn object that specifies serialization options to use.
Contents