JsonBooleanStringRead Method

Reads and converts the JSON to a nullable boolean.

Definition

Namespace: Common.Core.Converters
Assembly: Common.Core (in Common.Core.dll) Version: 2.1.5
C#
public override bool? Read(
	ref Utf8JsonReader reader,
	Type typeToConvert,
	JsonSerializerOptions options
)

Parameters

reader  Utf8JsonReader
The reader.
typeToConvert  Type
The type to convert.
options  JsonSerializerOptions
An object that specifies serialization options to use.

Return Value

NullableBoolean
The converted value or if the value could not be converted.

See Also